npmci/package.json

77 lines
2.1 KiB
JSON
Raw Normal View History

2016-05-26 20:17:57 +00:00
{
2018-04-29 13:02:16 +00:00
"name": "@shipzone/npmci",
2022-10-11 12:08:00 +00:00
"version": "4.0.9",
2018-12-23 17:54:16 +00:00
"private": false,
2017-07-19 14:40:24 +00:00
"description": "node and docker in gitlab ci on steroids",
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)",
"testVersion": "(cd test/assets/ && node ../../cli.js -v)"
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": {
"@gitzone/tsbuild": "^2.1.65",
"@gitzone/tsrun": "^1.2.37",
"@gitzone/tstest": "^1.0.73",
"@pushrocks/tapbundle": "^5.0.4",
2022-10-11 11:08:10 +00:00
"@types/node": "^18.8.3"
2016-05-26 20:17:57 +00:00
},
"dependencies": {
"@apiglobal/typedrequest": "^2.0.10",
"@pushrocks/lik": "^6.0.0",
2021-05-14 18:11:12 +00:00
"@pushrocks/npmextra": "^3.0.9",
"@pushrocks/projectinfo": "^5.0.1",
"@pushrocks/qenv": "^5.0.2",
2019-05-08 20:43:48 +00:00
"@pushrocks/smartanalytics": "^2.0.15",
"@pushrocks/smartcli": "^4.0.6",
2021-10-19 01:09:50 +00:00
"@pushrocks/smartdelay": "^2.0.13",
2022-10-11 08:53:12 +00:00
"@pushrocks/smartenv": "^5.0.3",
"@pushrocks/smartfile": "^10.0.5",
"@pushrocks/smartgit": "^3.0.0",
"@pushrocks/smartlog": "^3.0.1",
2021-05-14 18:11:12 +00:00
"@pushrocks/smartlog-destination-local": "^8.0.8",
"@pushrocks/smartparam": "^1.1.6",
"@pushrocks/smartpath": "^5.0.5",
"@pushrocks/smartpromise": "^3.1.7",
"@pushrocks/smartrequest": "^2.0.11",
"@pushrocks/smartshell": "^2.0.30",
"@pushrocks/smartsocket": "^2.0.7",
2022-10-11 11:26:49 +00:00
"@pushrocks/smartssh": "^2.0.0",
"@pushrocks/smartstring": "^4.0.5",
2021-11-07 03:20:14 +00:00
"@servezone/interfaces": "^1.0.3",
"@tsclass/tsclass": "^4.0.21",
2021-05-14 18:11:12 +00:00
"@types/through2": "^2.0.36",
"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"
2019-06-18 20:24:12 +00:00
]
2021-05-14 18:11:13 +00:00
}