smartnpm/package.json

50 lines
1.2 KiB
JSON
Raw Normal View History

2017-08-14 15:50:48 +00:00
{
"name": "@pushrocks/smartnpm",
2022-06-09 17:34:35 +00:00
"version": "2.0.3",
2018-09-01 14:40:42 +00:00
"private": false,
2017-08-14 15:50:48 +00:00
"description": "interface with npm to retrieve package information",
2020-03-17 00:38:58 +00:00
"main": "dist_ts/index.js",
"typings": "dist_ts/index.d.ts",
2022-04-04 21:21:49 +00:00
"type": "module",
2017-08-14 15:50:48 +00:00
"author": "Lossless GmbH",
"license": "MIT",
"scripts": {
"test": "(tstest test/)",
2022-04-04 21:21:49 +00:00
"build": "(tsbuild --web --allowimplicitany)"
2017-08-14 15:50:48 +00:00
},
"devDependencies": {
2022-06-01 18:55:45 +00:00
"@gitzone/tsbuild": "^2.1.63",
2022-06-09 17:33:13 +00:00
"@gitzone/tsrun": "^1.2.35",
2022-06-01 18:55:45 +00:00
"@gitzone/tstest": "^1.0.71",
2022-04-04 21:21:49 +00:00
"@pushrocks/tapbundle": "^5.0.3",
2022-06-09 17:33:13 +00:00
"@types/node": "^17.0.41"
2017-08-14 15:50:48 +00:00
},
"dependencies": {
"@pushrocks/consolecolor": "^2.0.1",
2022-06-09 17:34:34 +00:00
"@pushrocks/levelcache": "^3.0.2",
2022-06-09 17:33:13 +00:00
"@pushrocks/smartarchive": "^3.0.6",
"@pushrocks/smartfile": "^10.0.1",
2022-04-04 21:21:49 +00:00
"@pushrocks/smartpath": "^5.0.5",
"@pushrocks/smartpromise": "^3.1.7",
"@pushrocks/smartrequest": "^1.1.56",
"@pushrocks/smarttime": "^3.0.45",
2022-06-01 18:55:45 +00:00
"@pushrocks/smartversion": "^3.0.2",
2022-04-13 13:50:11 +00:00
"package-json": "^7.0.0"
2019-09-06 09:12:23 +00:00
},
"files": [
2020-03-17 00:38:58 +00:00
"ts/**/*",
"ts_web/**/*",
"dist/**/*",
"dist_*/**/*",
"dist_ts/**/*",
"dist_ts_web/**/*",
"assets/**/*",
2019-09-06 09:12:23 +00:00
"cli.js",
"npmextra.json",
"readme.md"
2020-10-02 13:28:39 +00:00
],
"browserslist": [
"last 1 chrome versions"
2019-09-06 09:12:23 +00:00
]
2020-10-02 13:28:40 +00:00
}