projectinfo/package.json

60 lines
1.4 KiB
JSON
Raw Normal View History

2016-02-20 04:05:07 +00:00
{
2023-07-10 00:41:49 +00:00
"name": "@push.rocks/projectinfo",
2023-08-08 16:06:23 +00:00
"version": "5.0.2",
2018-09-02 12:24:45 +00:00
"private": false,
2024-04-14 15:15:51 +00:00
"description": "A tool for gathering project information, supporting npm, git, and more.",
2020-06-01 22:45:45 +00:00
"main": "dist_ts/index.js",
"typings": "dist_ts/index.d.ts",
2022-04-18 20:16:46 +00:00
"type": "module",
2016-02-20 04:05:07 +00:00
"scripts": {
2018-09-02 12:08:15 +00:00
"test": "(tstest test/)",
2023-08-08 16:06:23 +00:00
"build": "(tsbuild --web --allowimplicitany)",
"buildDocs": "tsdoc"
2016-02-20 04:05:07 +00:00
},
"repository": {
"type": "git",
2024-05-29 12:11:27 +00:00
"url": "https://code.foss.global/push.rocks/projectinfo.git"
2016-02-20 04:05:07 +00:00
},
"keywords": [
2024-04-14 15:15:51 +00:00
"project-info",
2016-02-20 04:05:07 +00:00
"npm",
"git",
2024-04-14 15:15:51 +00:00
"typescript",
"package-info",
"repository"
2016-02-20 04:05:07 +00:00
],
"author": "Lossless GmbH",
"license": "MIT",
"bugs": {
"url": "https://gitlab.com/pushrocks/projectinfo/issues"
2016-02-20 04:05:07 +00:00
},
2024-05-29 12:11:27 +00:00
"homepage": "https://code.foss.global/push.rocks/projectinfo",
2016-02-20 04:05:07 +00:00
"devDependencies": {
2024-04-14 15:15:51 +00:00
"@git.zone/tsbuild": "^2.1.66",
"@git.zone/tsrun": "^1.2.44",
"@git.zone/tstest": "^1.0.77",
2023-08-08 16:06:23 +00:00
"@push.rocks/tapbundle": "^5.0.12",
"@types/node": "^20.4.8"
2016-02-20 04:05:07 +00:00
},
"dependencies": {
2023-08-08 16:06:23 +00:00
"@push.rocks/smartfile": "^10.0.28",
"@push.rocks/smartpath": "^5.0.11",
"@push.rocks/smartpromise": "^4.0.3",
"@push.rocks/smartstring": "^4.0.2"
2020-06-01 22:45:45 +00:00
},
"files": [
"ts/**/*",
"ts_web/**/*",
"dist/**/*",
"dist_*/**/*",
"dist_ts/**/*",
"dist_ts_web/**/*",
"assets/**/*",
"cli.js",
"npmextra.json",
"readme.md"
2022-04-18 20:17:10 +00:00
],
"browserslist": [
"last 1 chrome versions"
2020-06-01 22:45:45 +00:00
]
2024-04-14 15:15:51 +00:00
}