Files
qenv/package.json

63 lines
1.7 KiB
JSON
Raw Normal View History

2016-06-19 17:33:54 +02:00
{
2023-07-10 02:41:52 +02:00
"name": "@push.rocks/qenv",
2025-08-14 07:22:44 +00:00
"version": "6.1.2",
"private": false,
2024-04-14 17:16:43 +02:00
"description": "A module for easily handling environment variables in Node.js projects with support for .yml and .json configuration.",
2020-06-08 18:58:43 +00:00
"main": "dist_ts/index.js",
"typings": "dist_ts/index.d.ts",
2022-07-28 10:09:01 +02:00
"type": "module",
2016-06-19 17:33:54 +02:00
"scripts": {
"test": "(tstest test/ --verbose --testlog --timeout 20)",
2022-08-02 14:50:18 +02:00
"build": "(tsbuild --web --allowimplicitany)",
2022-07-28 10:10:39 +02:00
"buildDocs": "tsdoc"
2016-06-19 17:33:54 +02:00
},
"repository": {
"type": "git",
2024-05-29 14:11:29 +02:00
"url": "https://code.foss.global/push.rocks/qenv.git"
2016-06-19 17:33:54 +02:00
},
"keywords": [
2024-04-14 17:16:43 +02:00
"environment variables",
"configuration management",
"Node.js",
"TypeScript",
"Docker secrets",
"CI/CD",
"testing"
2016-06-19 17:33:54 +02:00
],
"author": "Lossless GmbH",
"license": "MIT",
"bugs": {
"url": "https://gitlab.com/pushrocks/qenv/issues"
},
2024-05-29 14:11:29 +02:00
"homepage": "https://code.foss.global/push.rocks/qenv",
2016-06-19 17:33:54 +02:00
"devDependencies": {
"@git.zone/tsbuild": "^2.6.4",
"@git.zone/tsrun": "^1.3.3",
"@git.zone/tstest": "^2.3.2",
"@types/node": "^22.13.13"
2016-06-19 17:33:54 +02:00
},
"dependencies": {
"@api.global/typedrequest": "^3.1.10",
2024-02-09 15:42:00 +01:00
"@configvault.io/interfaces": "^1.0.17",
"@push.rocks/smartfile": "^11.2.5",
"@push.rocks/smartlog": "^3.1.8",
"@push.rocks/smartpath": "^6.0.0"
2019-08-06 17:37:07 +02:00
},
"files": [
2020-06-08 18:58:43 +00:00
"ts/**/*",
"ts_web/**/*",
"dist/**/*",
"dist_*/**/*",
"dist_ts/**/*",
"dist_ts_web/**/*",
"assets/**/*",
2019-08-06 17:37:07 +02:00
"cli.js",
"npmextra.json",
"readme.md"
2022-07-28 10:10:39 +02:00
],
"browserslist": [
"last 1 chrome versions"
],
"packageManager": "pnpm@10.11.0+sha512.6540583f41cc5f628eb3d9773ecee802f4f9ef9923cc45b69890fb47991d4b092964694ec3a4f738a420c918a333062c8b925d312f42e4f0c263eb603551f977"
2024-11-18 19:19:30 +01:00
}