qenv/package.json

62 lines
1.5 KiB
JSON
Raw Normal View History

2016-06-19 15:33:54 +00:00
{
2023-07-10 00:41:52 +00:00
"name": "@push.rocks/qenv",
2024-02-09 14:42:01 +00:00
"version": "6.0.5",
"private": false,
2024-04-14 15:16:43 +00: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 08:09:01 +00:00
"type": "module",
2016-06-19 15:33:54 +00:00
"scripts": {
"test": "(tstest test/)",
2022-08-02 12:50:18 +00:00
"build": "(tsbuild --web --allowimplicitany)",
2022-07-28 08:10:39 +00:00
"buildDocs": "tsdoc"
2016-06-19 15:33:54 +00:00
},
"repository": {
"type": "git",
2024-05-29 12:11:29 +00:00
"url": "https://code.foss.global/push.rocks/qenv.git"
2016-06-19 15:33:54 +00:00
},
"keywords": [
2024-04-14 15:16:43 +00:00
"environment variables",
"configuration management",
"Node.js",
"TypeScript",
"Docker secrets",
"CI/CD",
"testing"
2016-06-19 15:33:54 +00:00
],
"author": "Lossless GmbH",
"license": "MIT",
"bugs": {
"url": "https://gitlab.com/pushrocks/qenv/issues"
},
2024-05-29 12:11:29 +00:00
"homepage": "https://code.foss.global/push.rocks/qenv",
2016-06-19 15:33:54 +00:00
"devDependencies": {
2024-02-09 14:42:00 +00:00
"@git.zone/tsbuild": "^2.1.72",
2023-10-20 15:21:51 +00:00
"@git.zone/tsrun": "^1.2.44",
2024-02-09 14:42:00 +00:00
"@git.zone/tstest": "^1.0.86",
2023-10-20 15:21:51 +00:00
"@push.rocks/tapbundle": "^5.0.15",
2024-02-09 14:42:00 +00:00
"@types/node": "^20.11.17"
2016-06-19 15:33:54 +00:00
},
"dependencies": {
2024-02-09 14:42:00 +00:00
"@api.global/typedrequest": "^3.0.4",
"@configvault.io/interfaces": "^1.0.17",
"@push.rocks/smartfile": "^11.0.4",
2023-08-08 17:08:25 +00:00
"@push.rocks/smartlog": "^3.0.3",
"@push.rocks/smartpath": "^5.0.11"
2019-08-06 15:37:07 +00:00
},
"files": [
2020-06-08 18:58:43 +00:00
"ts/**/*",
"ts_web/**/*",
"dist/**/*",
"dist_*/**/*",
"dist_ts/**/*",
"dist_ts_web/**/*",
"assets/**/*",
2019-08-06 15:37:07 +00:00
"cli.js",
"npmextra.json",
"readme.md"
2022-07-28 08:10:39 +00:00
],
"browserslist": [
"last 1 chrome versions"
2019-08-06 15:37:07 +00:00
]
2024-04-14 15:16:43 +00:00
}