-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
38 lines (38 loc) · 1.04 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
{
"name": "gap-secret-backup-operator",
"version": "0.0.1",
"description": "",
"main": "src/index.js",
"scripts": {
"test": "mocha 'src/**/*.test.js'",
"test:watch": "npm t -- --watch",
"posttest": "npm run lint",
"lint": "eslint . --config .eslintrc",
"format": "prettier --write .",
"check-format": "prettier --check .",
"start": "node src/index.js"
},
"author": "Gergo Tolnai",
"license": "MIT",
"dependencies": {
"@dot-i/k8s-operator": "^1.1.5",
"@kubernetes/client-node": "^0.15.1",
"lodash": "^4.17.21"
},
"devDependencies": {
"chai": "^4.3.4",
"chai-subset": "^1.6.0",
"eslint": "^7.32.0",
"eslint-config-emarsys": "^5.1.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-chai-expect": "^2.2.0",
"eslint-plugin-chai-friendly": "^0.7.2",
"eslint-plugin-no-only-tests": "^2.6.0",
"eslint-plugin-prettier": "^3.4.1",
"eslint-plugin-security": "^1.4.0",
"mocha": "^9.1.0",
"prettier": "^2.3.2",
"sinon": "^11.1.2",
"sinon-chai": "^3.7.0"
}
}