-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
62 lines (62 loc) · 2.07 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
{
"name": "@razee/clustersubscription",
"version": "0.0.0-dev",
"description": "Subscribe to razee controlled resources",
"main": "./src/index.js",
"bin": "./bin/clustersubscription",
"scripts": {
"start": "node src/index.js",
"test": "nyc --reporter=html --all --reporter=text mocha ",
"test:debug": "mocha --inspect-brk",
"snifftest": " ((./bin/clustersubscription) || if [ $? = 50 ]; then echo 'code executed normally (expected error), snifftest passed' & exit 0; else echo 'code failed to execute, snifftest failed' & exit 1; fi)",
"lint": "npx npm-run-all --npm-path npm eslint dockerlint jsonlint markdownlint yaml-lint shellcheck",
"eslint": "npx eslint src/index.js",
"dockerlint": "npx dockerlint Dockerfile",
"jsonlint": "npx jsonlint --quiet build/viewTemplate.json",
"markdownlint": "npx markdownlint-cli README.md docs/",
"yaml-lint": "npx yaml-lint kubernetes/**/*.yaml .travis.yml",
"shellcheck": "shellcheck build/*.sh"
},
"repository": {
"type": "git",
"url": "git+https://github.com/razee-io/ClusterSubscription.git"
},
"publishConfig": {
"access": "public"
},
"keywords": [],
"author": "",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/razee-io/ClusterSubscription/issues"
},
"homepage": "https://github.com/razee-io/ClusterSubscription#readme",
"dependencies": {
"@razee/kubernetes-util": "^1.1.20",
"apollo-boost": "^0.4.9",
"apollo-cache-inmemory": "^1.6.6",
"apollo-client": "^2.6.10",
"apollo-link-http": "^1.5.17",
"apollo-link-ws": "^1.0.20",
"chokidar": "^3.6.0",
"cross-fetch": "^3.1.5",
"graphql": "^15.7.2",
"graphql-tag": "^2.12.6",
"mustache": "^4.2.0",
"object-path": "^0.11.8",
"p-limit": "^3.1.0",
"subscriptions-transport-ws": "^0.9.19",
"touch": "^3.1.1",
"winston": "^3.17.0",
"ws": "^7.5.9"
},
"devDependencies": {
"chai": "^4.3.7",
"dockerlint": "^0.3.9",
"eslint": "^8.57.0",
"markdownlint": "^0.36.1",
"mocha": "^10.8.2",
"nyc": "^15.1.0",
"rewire": "^6.0.0"
}
}