Files
smartnpm/package.json
T

74 lines
1.8 KiB
JSON
Raw Permalink Normal View History

2017-08-14 17:50:48 +02:00
{
2023-07-10 10:16:56 +02:00
"name": "@push.rocks/smartnpm",
2026-05-01 15:39:02 +00:00
"version": "2.1.0",
2018-09-01 16:40:42 +02:00
"private": false,
2024-04-14 18:03:33 +02: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 23:21:49 +02:00
"type": "module",
"author": "Task Venture Capital GmbH <hello@task.vc>",
2017-08-14 17:50:48 +02:00
"license": "MIT",
"scripts": {
"test": "tstest test/ --verbose --timeout 120",
"build": "tsbuild --web",
"format": "gitzone format",
2023-07-25 18:14:51 +02:00
"buildDocs": "tsdoc"
2017-08-14 17:50:48 +02:00
},
"repository": {
"type": "git",
"url": "https://code.foss.global/push.rocks/smartnpm.git"
},
"keywords": [
"npm",
"package",
"information",
"registry",
"search",
"metadata",
"version",
"dependencies"
],
"bugs": {
"url": "https://gitlab.com/push.rocks/smartnpm/issues"
},
"homepage": "https://code.foss.global/push.rocks/smartnpm",
2017-08-14 17:50:48 +02:00
"devDependencies": {
"@git.zone/tsbuild": "^4.4.0",
"@git.zone/tsrun": "^2.0.3",
"@git.zone/tstest": "^3.6.3",
"@types/lodash.clonedeep": "^4.5.9",
"@types/node": "^25.6.0"
2017-08-14 17:50:48 +02:00
},
"dependencies": {
"@push.rocks/consolecolor": "^2.0.3",
"@push.rocks/levelcache": "^3.2.2",
"@push.rocks/smartarchive": "^5.2.2",
"@push.rocks/smartfile": "^13.1.3",
"@push.rocks/smartfs": "^1.5.1",
"@push.rocks/smartpath": "^6.0.0",
"@push.rocks/smartpromise": "^4.2.3",
"@push.rocks/smartrequest": "^5.0.1",
"@push.rocks/smarttime": "^4.2.3",
"@push.rocks/smartversion": "^3.1.0",
"package-json": "^10.0.1"
2019-09-06 11:12:23 +02:00
},
"files": [
2020-03-17 00:38:58 +00:00
"ts/**/*",
"ts_web/**/*",
"dist/**/*",
"dist_*/**/*",
"dist_ts/**/*",
"dist_ts_web/**/*",
"assets/**/*",
2019-09-06 11:12:23 +02:00
"cli.js",
".smartconfig.json",
"license",
2019-09-06 11:12:23 +02:00
"npmextra.json",
"readme.md"
2020-10-02 13:28:39 +00:00
],
"browserslist": [
"last 1 chrome versions"
2024-04-14 18:03:33 +02:00
],
"packageManager": "pnpm@10.28.2"
}