forked from razee-io/RemoteResource
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
61 lines (61 loc) · 1.61 KB
/
package.json
File metadata and controls
61 lines (61 loc) · 1.61 KB
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
{
"name": "RemoteResource",
"version": "0.0.0-dev",
"description": "Kapitan: component to download and manage files",
"main": "src/index.js",
"keywords": [
"kubernetes",
"razee",
"razeedash",
"download",
"CD"
],
"scripts": {
"start": "node src/index.js",
"test": "nyc --reporter=html --all --reporter=text mocha ",
"test:debug": "mocha --inspect-brk",
"check-coverage": "nyc check-coverage --statements 0 --branches 0 --functions 0 --lines 0",
"lint": "node_modules/.bin/npm-run-all eslint yamllint markdownlint",
"eslint": "node_modules/.bin/eslint src/",
"yamllint": "node_modules/.bin/yamllint .travis.yml kubernetes/RemoteResource/resource.yaml",
"markdownlint": "node_modules/.bin/markdownlint README.md docs/",
"dockerlint": "node_modules/.bin/dockerlint Dockerfile",
"commit": "git-cz"
},
"repository": {
"type": "git",
"url": "git@github.com:razee-io/RemoteResource.git"
},
"contributors": [
{
"name": "Alex Lewitt"
},
{
"name": "Adam King"
}
],
"publishConfig": {
"access": "public"
},
"license": "Apache-2.0",
"dependencies": {
"@razee/kubernetes-util": "^0.1.3",
"@razee/razeedeploy-core": "^0.8.4",
"bunyan": "^1.8.12",
"clone": "^2.1.2",
"request-promise-native": "^1.0.8"
},
"devDependencies": {
"chai": "^4.2.0",
"dockerlint": "^0.3.9",
"eslint": "^7.1.0",
"markdownlint-cli": "^0.23.1",
"mocha": "^7.2.0",
"nock": "^12.0.3",
"npm-run-all": "^4.1.5",
"nyc": "^15.1.0",
"rewire": "^5.0.0",
"sinon": "^9.0.2",
"yaml-lint": "^1.2.4"
}
}