-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
52 lines (52 loc) · 1.05 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
{
"name": "jenkins-cli-node",
"version": "0.1.4",
"description": "Jenkins command line tool",
"main": "./dist/index.js",
"bin": {
"jk": "./bin/index"
},
"keywords": [
"jenkins-cli",
"jenkins",
"node-jenkins",
"jk"
],
"files": [
"dist/",
"bin/",
"src/",
"public"
],
"scripts": {
"dev": "tsc --watch",
"build": "tsc"
},
"repository": {
"type": "git",
"url": "https://github.com/yuexing0921/jenkins-cli"
},
"author": "[email protected]",
"license": "MIT",
"devDependencies": {
"@types/node": "^12.12.6",
"@types/yargs": "^13.0.3",
"typescript": "^3.7.2"
},
"dependencies": {
"axios": "^0.19.0",
"chalk": "^2.4.2",
"fs-extra": "^8.1.0",
"fuzzy": "^0.1.3",
"inquirer": "^7.0.0",
"inquirer-autocomplete-prompt": "^1.0.1",
"inquirer-search-checkbox": "^1.0.0",
"jenkins": "^0.27.0",
"js-base64": "^2.5.1",
"js-yaml": "^3.13.1",
"node-notifier": "^6.0.0",
"opn": "^6.0.0",
"simple-git": "^1.126.0",
"yargs": "^14.2.0"
}
}