npmextra/package.json

68 lines
1.7 KiB
JSON
Raw Normal View History

2016-07-13 22:14:28 +00:00
{
2023-07-10 00:41:42 +00:00
"name": "@push.rocks/npmextra",
2024-04-14 01:45:31 +00:00
"version": "5.0.13",
"private": false,
2024-04-14 01:45:31 +00:00
"description": "Enhances npm with additional configuration and tool management capabilities, including a key-value store for project setups.",
2021-01-27 21:00:49 +00:00
"main": "dist_ts/index.js",
"typings": "dist_ts/index.d.ts",
2016-07-13 22:14:28 +00:00
"scripts": {
2021-01-27 21:10:31 +00:00
"test": "(tstest test/ --web)",
2023-08-03 17:28:10 +00:00
"build": "(tsbuild --web --allowimplicitany)",
2023-08-03 17:22:34 +00:00
"buildDocs": "tsdoc"
2016-07-13 22:14:28 +00:00
},
"repository": {
"type": "git",
2024-05-29 12:11:24 +00:00
"url": "https://code.foss.global/push.rocks/npmextra.git"
2016-07-13 22:14:28 +00:00
},
"author": "Lossless GmbH",
"license": "MIT",
"bugs": {
"url": "https://gitlab.com/pushrocks/npmextra/issues"
},
2024-05-29 12:11:24 +00:00
"homepage": "https://code.foss.global/push.rocks/npmextra",
2016-07-16 23:23:22 +00:00
"dependencies": {
2024-02-09 14:57:32 +00:00
"@push.rocks/qenv": "^6.0.5",
2024-01-25 12:57:55 +00:00
"@push.rocks/smartfile": "^11.0.4",
2023-08-24 10:06:46 +00:00
"@push.rocks/smartjson": "^5.0.10",
2023-08-03 17:22:34 +00:00
"@push.rocks/smartlog": "^3.0.2",
"@push.rocks/smartpath": "^5.0.11",
"@push.rocks/smartpromise": "^4.0.2",
2024-02-07 17:16:40 +00:00
"@push.rocks/smartrx": "^3.0.7",
2024-01-25 12:57:55 +00:00
"@push.rocks/taskbuffer": "^3.1.7"
2016-07-16 23:23:22 +00:00
},
2017-07-20 15:13:01 +00:00
"devDependencies": {
2024-02-07 17:16:40 +00:00
"@git.zone/tsbuild": "^2.1.66",
"@git.zone/tsrun": "^1.2.44",
"@git.zone/tstest": "^1.0.77",
2023-08-24 08:39:47 +00:00
"@push.rocks/tapbundle": "^5.0.15",
2024-02-09 14:57:32 +00:00
"@types/node": "^20.11.17"
2019-09-16 11:19:42 +00:00
},
"files": [
2021-01-27 21:00:49 +00:00
"ts/**/*",
"ts_web/**/*",
"dist/**/*",
"dist_*/**/*",
"dist_ts/**/*",
"dist_ts_web/**/*",
"assets/**/*",
2019-09-16 11:19:42 +00:00
"cli.js",
"npmextra.json",
"readme.md"
2021-01-27 21:00:49 +00:00
],
"browserslist": [
"last 1 chrome versions"
2023-08-03 17:22:34 +00:00
],
2024-04-14 01:45:31 +00:00
"type": "module",
"keywords": [
"npm",
"configuration management",
"tool management",
"key-value store",
"project setup",
"npm scripts",
"typescript",
"environment setup",
"dependencies management",
"npm package enhancement"
]
2024-05-29 12:11:24 +00:00
}