forked from razee-io/razeedeploy-delta
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
60 lines (60 loc) · 1.77 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
{
"name": "@razee/razeedeploy-delta",
"version": "0.0.0-dev",
"description": "A service to keep specified Kubernetes custom resources enforced and updated",
"main": "./src/index.js",
"bin": "./bin/razeedeploy-delta",
"scripts": {
"start": "node src/index.js",
"test": "nyc --reporter=html --reporter=text mocha ",
"test:debug": "mocha --inspect-brk",
"check-coverage": "nyc check-coverage --statements 0 --branches 0 --functions 0 --lines 0",
"lint": "npx npm-run-all --npm-path npm eslint dockerlint jsonlint yamllint markdownlint shlint",
"eslint": "npx eslint src/index.js",
"dockerlint": "npx dockerlint Dockerfile",
"jsonlint": "npx jsonlint --quiet build/viewTemplate.json",
"yamllint": "npx yamllint .travis.yml",
"markdownlint": "npx markdownlint README.md docs/",
"shlint": "npx shellcheck build/*.sh sh/*.sh"
},
"repository": {
"type": "git",
"url": "[email protected]:razee-io/razeedeploy-delta.git"
},
"contributors": [
{
"name": "Alex Lewitt"
}
],
"publishConfig": {
"access": "public"
},
"license": "Apache-2.0",
"dependencies": {
"@razee/kubernetes-util": "^0.2.6",
"axios": "^0.24.0",
"bunyan": "^1.8.15",
"deepmerge": "^4.2.2",
"fs-extra": "^10.0.0",
"handlebars": "^4.7.7",
"js-yaml": "^4.1.0",
"minimist": "^1.2.5",
"object-path": "^0.11.8",
"request-promise-native": "^1.0.9",
"touch": "^3.1.0",
"valid-url": "^1.0.9"
},
"devDependencies": {
"chai": "^4.3.4",
"dockerlint": "^0.3.9",
"eslint": "^8.6.0",
"markdownlint-cli": "^0.30.0",
"mocha": "^9.1.3",
"nock": "^13.2.1",
"npm-check-updates": "^12.1.0",
"npm-run-all": "^4.1.5",
"nyc": "^15.1.0",
"sinon": "^12.0.1",
"yaml-lint": "^1.2.4"
}
}