smartnpm/package.json

65 lines
1.6 KiB
JSON
Raw Normal View History

2017-08-14 15:50:48 +00:00
{
2023-07-10 08:16:56 +00:00
"name": "@push.rocks/smartnpm",
2023-07-25 16:14:51 +00:00
"version": "2.0.4",
2018-09-01 14:40:42 +00:00
"private": false,
2024-04-14 16:03:33 +00:00
"description": "A library to interface with npm for retrieving package information and manipulation.",
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/)",
2023-07-25 16:14:51 +00:00
"build": "(tsbuild --web --allowimplicitany)",
"buildDocs": "tsdoc"
2017-08-14 15:50:48 +00:00
},
"devDependencies": {
2023-07-25 16:14:51 +00:00
"@gitzone/tsbuild": "^2.1.66",
"@gitzone/tsrun": "^1.2.44",
"@gitzone/tstest": "^1.0.77",
"@push.rocks/tapbundle": "^5.0.12",
"@types/node": "^20.4.4"
2017-08-14 15:50:48 +00:00
},
"dependencies": {
2023-07-25 16:14:51 +00:00
"@push.rocks/consolecolor": "^2.0.1",
"@push.rocks/levelcache": "^3.0.6",
"@push.rocks/smartarchive": "^3.0.6",
"@push.rocks/smartfile": "^10.0.28",
"@push.rocks/smartpath": "^5.0.11",
"@push.rocks/smartpromise": "^4.0.3",
"@push.rocks/smartrequest": "^2.0.18",
"@push.rocks/smarttime": "^4.0.4",
"@push.rocks/smartversion": "^3.0.2",
"package-json": "^8.1.1"
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"
2024-04-14 16:03:33 +00:00
],
"keywords": [
"npm",
"package",
"information",
"registry",
"search",
"metadata",
"version",
"dependencies"
2024-05-29 12:15:03 +00:00
],
"homepage": "https://code.foss.global/push.rocks/smartnpm",
"repository": {
"type": "git",
"url": "https://code.foss.global/push.rocks/smartnpm.git"
}
2024-04-14 16:03:33 +00:00
}