forked from external-secrets/kubernetes-external-secrets
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
73 lines (73 loc) · 1.82 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
{
"name": "kubernetes-external-secrets",
"version": "1.2.0",
"description": "Kubernetes external secrets",
"main": "bin/daemon.js",
"scripts": {
"coverage": "nyc ./node_modules/mocha/bin/_mocha --recursive lib",
"lint": "eslint --fix --ignore-pattern /coverage/ ./",
"release": "standard-version --tag-prefix='' && ./release.sh",
"start": "./bin/daemon.js",
"nodemon": "nodemon ./bin/daemon.js",
"test": "eslint --ignore-pattern /coverage/ ./ && mocha --recursive lib"
},
"repository": {
"type": "git",
"url": "https://github.com/godaddy/kubernetes-external-secrets"
},
"keywords": [
"kubernets",
"scerets",
"aws"
],
"author": "GoDaddy Operating Company, LLC",
"maintainer": "Jacopo Daeli <[email protected]>",
"license": "MIT",
"engines": {
"node": ">=10.0.0"
},
"dependencies": {
"aws-sdk": "^2.433.0",
"kubernetes-client": "^7.0.0",
"lodash.clonedeep": "^4.5.0",
"make-promises-safe": "^5.0.0",
"pino": "^5.12.0"
},
"devDependencies": {
"chai": "^4.1.2",
"dotenv": "^8.0.0",
"eslint": "^5.16.0",
"eslint-config-standard": "^12.0.0",
"eslint-plugin-import": "^2.16.0",
"eslint-plugin-node": "^9.0.0",
"eslint-plugin-promise": "^4.1.1",
"eslint-plugin-security": "^1.4.0",
"eslint-plugin-standard": "^4.0.0",
"mocha": "^6.0.2",
"nodemon": "^1.18.10",
"nyc": "^14.0.0",
"sinon": "^7.3.1",
"standard-version": "^6.0.1"
},
"nyc": {
"check-coverage": true,
"reporter": [
"cobertura",
"json-summary",
"lcov",
"text",
"text-summary"
],
"exclude": [
"config/",
"coverage/",
"bin/",
"**/*.test.js"
],
"lines": 4,
"functions": 4,
"all": true,
"cache": false,
"temp-directory": "./coverage/.nyc_output"
}
}