-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
55 lines (55 loc) · 1.27 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
{
"name": "argopm",
"version": "0.10.20",
"description": "Argo package manager",
"main": "./lib/index.js",
"scripts": {
"test": "jest --detectOpenHandles",
"prettier": "prettier --write .",
"eslint": "eslint --fix .",
"lint-staged": "lint-staged"
},
"author": "[email protected]",
"license": "MIT",
"dependencies": {
"@aws-sdk/client-s3": "^3.637.0",
"@kubernetes/client-node": "^0.16.3",
"ansicolor": "^1.1.95",
"as-table": "^1.0.55",
"axios": "^0.28.1",
"bluebird": "^3.7.2",
"compare-versions": "^4.1.2",
"dotenv": "^10.0.0",
"js-yaml": "^4.1.0",
"npm-package-arg": "^8.1.5",
"npm-remote-ls": "^1.3.2",
"rimraf": "^6.0.1",
"stream-buffers": "^3.0.3",
"system-commands": "^1.1.7",
"yargs": "^17.7.2",
"yargs-parser": "^21.1.1"
},
"devDependencies": {
"eslint": "^8.6.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-jest": "^25.3.4",
"jest": "^27.4.6",
"lint-staged": "^12.1.5",
"pre-commit": "^1.2.2",
"prettier": "^2.5.1",
"rewire": "^7.0.0"
},
"lint-staged": {
"*.js": [
"eslint --fix",
"prettier --write"
]
},
"pre-commit": [
"lint-staged"
],
"bin": {
"argopm": "./bin/install.js"
},
"preferGlobal": true
}