npmci/package.json

95 lines
2.5 KiB
JSON
Raw Permalink Normal View History

2016-05-26 20:17:57 +00:00
{
2023-08-09 09:26:22 +00:00
"name": "@ship.zone/npmci",
2024-05-24 13:54:33 +00:00
"version": "4.1.31",
2018-12-23 17:54:16 +00:00
"private": false,
2024-05-24 13:54:32 +00:00
"description": "A tool to streamline Node.js and Docker workflows within CI environments, particularly GitLab CI, providing various CI/CD utilities.",
2021-05-14 18:11:12 +00:00
"main": "dist_ts/index.js",
"typings": "dist_ts/index.d.ts",
"type": "module",
2016-05-26 20:17:57 +00:00
"bin": {
"npmci": "cli.js"
2016-05-26 20:17:57 +00:00
},
"scripts": {
2019-09-01 11:44:21 +00:00
"test": "tstest test/",
"build": "tsbuild --allowimplicitany && (npm run testVersion)",
2022-10-11 12:26:42 +00:00
"testVersion": "(cd test/assets/ && node ../../cli.js -v)",
"buildDocs": "tsdoc"
2016-05-26 20:17:57 +00:00
},
"repository": {
"type": "git",
2017-02-08 20:32:45 +00:00
"url": "git+ssh://git@gitlab.com/gitzone/npmci.git"
2016-05-26 20:17:57 +00:00
},
"author": "Lossless GmbH",
"license": "MIT",
"bugs": {
2017-02-08 20:32:45 +00:00
"url": "https://gitlab.com/gitzone/npmci/issues"
2016-05-26 20:17:57 +00:00
},
2017-02-08 20:32:45 +00:00
"homepage": "https://gitlab.com/gitzone/npmci#README",
2016-05-26 20:17:57 +00:00
"devDependencies": {
2024-05-23 22:17:31 +00:00
"@git.zone/tsbuild": "^2.1.66",
"@git.zone/tsrun": "^1.2.44",
"@git.zone/tstest": "^1.0.77",
2023-08-24 15:25:55 +00:00
"@push.rocks/tapbundle": "^5.0.15",
"@types/node": "^20.5.4"
2016-05-26 20:17:57 +00:00
},
"dependencies": {
2023-08-08 21:32:07 +00:00
"@api.global/typedrequest": "^3.0.1",
2023-08-24 15:25:55 +00:00
"@push.rocks/lik": "^6.0.5",
"@push.rocks/npmextra": "^4.0.0",
"@push.rocks/projectinfo": "^5.0.2",
"@push.rocks/qenv": "^6.0.2",
2023-07-12 13:35:38 +00:00
"@push.rocks/smartanalytics": "^2.0.15",
2023-08-24 15:25:55 +00:00
"@push.rocks/smartcli": "^4.0.8",
2023-07-13 14:00:47 +00:00
"@push.rocks/smartdelay": "^3.0.5",
2023-07-12 13:35:38 +00:00
"@push.rocks/smartenv": "^5.0.5",
2023-08-24 15:25:55 +00:00
"@push.rocks/smartfile": "^10.0.30",
"@push.rocks/smartgit": "^3.0.1",
2023-07-13 14:00:47 +00:00
"@push.rocks/smartlog": "^3.0.3",
2023-07-12 13:35:38 +00:00
"@push.rocks/smartlog-destination-local": "^9.0.0",
2023-07-13 14:00:47 +00:00
"@push.rocks/smartobject": "^1.0.12",
2023-07-12 13:35:38 +00:00
"@push.rocks/smartpath": "^5.0.11",
"@push.rocks/smartpromise": "^4.0.2",
"@push.rocks/smartrequest": "^2.0.18",
"@push.rocks/smartshell": "^3.0.3",
2023-08-24 15:25:55 +00:00
"@push.rocks/smartsocket": "^2.0.22",
"@push.rocks/smartssh": "^2.0.1",
"@push.rocks/smartstring": "^4.0.8",
2024-05-23 22:17:31 +00:00
"@serve.zone/interfaces": "^1.0.3",
2023-06-25 21:26:25 +00:00
"@tsclass/tsclass": "^4.0.42",
"@types/through2": "^2.0.38",
2021-05-14 18:11:12 +00:00
"through2": "^4.0.2"
2019-06-18 20:24:12 +00:00
},
"files": [
2021-05-14 18:11:12 +00:00
"ts/**/*",
"ts_web/**/*",
"dist/**/*",
"dist_*/**/*",
"dist_ts/**/*",
"dist_ts_web/**/*",
"assets/**/*",
2019-06-18 20:24:12 +00:00
"cli.js",
"npmextra.json",
"readme.md"
2021-05-14 18:11:12 +00:00
],
"browserslist": [
"last 1 chrome versions"
2024-05-23 22:17:31 +00:00
],
"keywords": [
"Node.js",
"Docker",
"GitLab CI",
2024-05-24 13:54:32 +00:00
"GitHub CI",
"Gitea CI",
2024-05-23 22:17:31 +00:00
"CI/CD",
"automation",
"npm",
"TypeScript",
"cloud",
"SSH",
"registry",
2024-05-24 13:54:32 +00:00
"container management",
"continuous integration",
"continuous deployment"
2019-06-18 20:24:12 +00:00
]
2024-05-24 13:54:33 +00:00
}