-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
99 lines (99 loc) · 2.71 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
{
"name": "adeng-jenkins-cli",
"version": "0.0.0-development",
"description": "A CLI app that helps you deal with jenkins.",
"license": "MIT",
"homepage": "https://github.com/Bielik20/adeng-jenkins-cli#readme",
"repository": {
"type": "git",
"url": "https://github.com/Bielik20/adeng-jenkins-cli.git"
},
"engines": {
"node": ">=8"
},
"preferGlobal": true,
"bin": {
"jenkins": "bin/jenkins"
},
"author": "Damian Bielecki <[email protected]>",
"scripts": {
"prepublishOnly": "npm run build",
"prebuild": "rimraf dist",
"build": "tsc",
"watch": "npm run build -- --watch",
"lint": "tslint --project .",
"lint:fix": "tslint --fix --project .",
"prettier": "prettier --write 'src/**/*.{ts,js,json,css,scss,html}'",
"format": "npm run prettier && npm run lint:fix",
"test": "jest --coverage",
"test:watch": "jest --coverage --watch",
"test:prod": "npm run lint && npm run test -- --no-cache",
"report-coverage": "cat ./coverage/lcov.info | coveralls",
"commit": "git-cz",
"semantic-release": "semantic-release"
},
"dependencies": {
"ansi-escapes": "^4.1.0",
"axios": "^0.18.1",
"boxen": "^3.1.0",
"chalk": "^2.4.2",
"clear": "^0.1.0",
"clui": "^0.3.6",
"commander": "^2.19.0",
"configstore": "^4.0.0",
"figlet": "^1.2.1",
"git-branch": "^2.0.1",
"inquirer": "^6.2.2",
"jenkins": "^0.25.0",
"jenkins-jobs-runner": "^1.0.3",
"jenkins-rxjs": "^1.1.1",
"log-symbols": "^2.2.0",
"minimist": "^1.2.0",
"multi-progress": "^2.0.0",
"rxjs": "^6.5.2",
"update-notifier": "2.5.0"
},
"devDependencies": {
"@commitlint/cli": "^8.3.5",
"@commitlint/config-conventional": "^8.3.4",
"@types/configstore": "^4.0.0",
"@types/figlet": "^1.2.0",
"@types/inquirer": "^6.0.0",
"@types/jenkins": "^0.23.1",
"@types/jest": "^25.1.3",
"@types/minimist": "^1.2.0",
"@types/multi-progress": "^2.0.3",
"@types/node": "^11.12.0",
"@types/progress": "^2.0.3",
"@types/update-notifier": "2.5.0",
"commitizen": "^4.0.3",
"coveralls": "^3.0.9",
"cz-conventional-changelog": "^3.1.0",
"husky": "^1.3.1",
"jest": "^25.1.0",
"lint-staged": "^10.0.7",
"prettier": "^1.16.4",
"rimraf": "^3.0.2",
"semantic-release": "^17.0.4",
"ts-jest": "^25.2.1",
"tslint": "^5.14.0",
"tslint-config-prettier": "^1.18.0",
"typescript": "^3.8.2"
},
"config": {
"commitizen": {
"path": "cz-conventional-changelog"
}
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
},
"husky": {
"hooks": {
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS",
"pre-commit": "lint-staged"
}
}
}