-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
48 lines (48 loc) · 1.21 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
{
"name": "jenkins-cli",
"version": "0.1.2",
"description": "Yet another Jenkins cli",
"type": "module",
"bin": {
"jenkins": "dist/index.js"
},
"scripts": {
"build": "esbuild src/bin/jenkins.js --platform=node --bundle --packages=external --format=esm --outfile=dist/index.js",
"watch": "npm run build -- --watch",
"package": "pkg dist/index.js -d -o pkg/jenkins --targets node20-linux-x64,node20-macos-x64,node20-win-x64",
"lint": "standard"
},
"repository": {
"type": "git",
"url": "git+https://github.com/htekgulds/jenkins-cli.git"
},
"keywords": [
"jenkins",
"cli",
"nodejs",
"pkg",
"esbuild",
"yargs"
],
"author": "Hasan Tekgül <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/htekgulds/jenkins-cli/issues"
},
"homepage": "https://github.com/htekgulds/jenkins-cli#readme",
"dependencies": {
"axios": "^1.7.5",
"chalk": "^5.3.0",
"cli-table3": "^0.6.5",
"conf": "^13.0.1",
"enquirer": "^2.4.1",
"pretty-ms": "^9.1.0",
"winston": "^3.14.2",
"yargs": "^17.7.2"
},
"devDependencies": {
"@yao-pkg/pkg": "^5.12.1",
"esbuild": "^0.23.1",
"standard": "^17.1.0"
}
}