forked from external-secrets/kubernetes-external-secrets
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
82 lines (82 loc) · 2.25 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
74
75
76
77
78
79
80
81
82
{
"name": "kubernetes-external-secrets",
"version": "2.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/ ./",
"local": "LOCALSTACK=1 AWS_ACCESS_KEY_ID=foobar AWS_SECRET_ACCESS_KEY=foobar nodemon",
"localstack": "docker run -it -p 4583:4583 -p 4584:4584 -p 4592:4592 -p 9999:8080 -e SERVICES=ssm,secretsmanager,sts -e DEBUG=1 --rm localstack/localstack:0.10.5",
"release": "standard-version --tag-prefix='' && ./release.sh",
"start": "./bin/daemon.js",
"nodemon": "nodemon ./bin/daemon.js",
"test": "eslint --ignore-pattern /coverage/ ./ && mocha --recursive lib",
"test-e2e": "./e2e/run-e2e-suite.sh"
},
"repository": {
"type": "git",
"url": "https://github.com/godaddy/kubernetes-external-secrets"
},
"keywords": [
"kubernetes",
"secrets",
"aws"
],
"author": "GoDaddy Operating Company, LLC",
"license": "MIT",
"engines": {
"node": ">=12.0.0"
},
"dependencies": {
"aws-sdk": "^2.575.0",
"express": "^4.17.1",
"js-yaml": "^3.13.1",
"json-stream": "^1.0.0",
"kubernetes-client": "^8.3.6",
"lodash.clonedeep": "^4.5.0",
"lodash.merge": "^4.6.2",
"make-promises-safe": "^5.1.0",
"node-vault": "^0.9.8",
"pino": "^5.13.6",
"prom-client": "^11.5.3"
},
"devDependencies": {
"chai": "^4.1.2",
"dotenv": "^8.2.0",
"eslint": "^6.6.0",
"eslint-config-standard": "^14.1.0",
"eslint-plugin-import": "^2.18.2",
"eslint-plugin-node": "^10.0.0",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-security": "^1.4.0",
"eslint-plugin-standard": "^4.0.1",
"mocha": "^6.2.2",
"nodemon": "^2.0.1",
"nyc": "^14.1.1",
"sinon": "^7.5.0",
"standard-version": "^7.0.1",
"supertest": "^4.0.2"
},
"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"
}
}