Files
projectinfo/package.json

60 lines
1.4 KiB
JSON
Raw Normal View History

2016-02-20 05:05:07 +01:00
{
2023-07-10 02:41:49 +02:00
"name": "@push.rocks/projectinfo",
2026-03-26 08:35:13 +00:00
"version": "5.1.0",
2018-09-02 14:24:45 +02:00
"private": false,
2024-04-14 17:15:51 +02: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 22:16:46 +02:00
"type": "module",
2016-02-20 05:05:07 +01:00
"scripts": {
2018-09-02 14:08:15 +02:00
"test": "(tstest test/)",
"build": "(tsbuild tsfolders)",
2023-08-08 18:06:23 +02:00
"buildDocs": "tsdoc"
2016-02-20 05:05:07 +01:00
},
"repository": {
"type": "git",
2024-05-29 14:11:27 +02:00
"url": "https://code.foss.global/push.rocks/projectinfo.git"
2016-02-20 05:05:07 +01:00
},
"keywords": [
2024-04-14 17:15:51 +02:00
"project-info",
2016-02-20 05:05:07 +01:00
"npm",
"git",
2024-04-14 17:15:51 +02:00
"typescript",
"package-info",
"repository"
2016-02-20 05:05:07 +01:00
],
"author": "Lossless GmbH",
"license": "MIT",
"bugs": {
"url": "https://gitlab.com/pushrocks/projectinfo/issues"
2016-02-20 05:05:07 +01:00
},
2024-05-29 14:11:27 +02:00
"homepage": "https://code.foss.global/push.rocks/projectinfo",
2016-02-20 05:05:07 +01:00
"devDependencies": {
"@git.zone/tsbuild": "^4.4.0",
"@git.zone/tsrun": "^2.0.2",
"@git.zone/tstest": "^3.6.0",
"@types/node": "^25.5.0"
2016-02-20 05:05:07 +01:00
},
"dependencies": {
"@push.rocks/smartfs": "^1.5.0",
"@push.rocks/smartpath": "^6.0.0",
"@push.rocks/smartpromise": "^4.2.3",
"@push.rocks/smartstring": "^4.1.0"
2020-06-01 22:45:45 +00:00
},
"files": [
"ts/**/*",
"ts_web/**/*",
"dist/**/*",
"dist_*/**/*",
"dist_ts/**/*",
"dist_ts_web/**/*",
"assets/**/*",
"cli.js",
".smartconfig.json",
2020-06-01 22:45:45 +00:00
"readme.md"
2022-04-18 22:17:10 +02:00
],
"browserslist": [
"last 1 chrome versions"
2020-06-01 22:45:45 +00:00
]
2026-03-26 08:35:13 +00:00
}