This repository has been archived by the owner on Sep 3, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 12
/
package.json
71 lines (71 loc) · 1.92 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
{
"name": "@razee/remoteresources3",
"version": "0.0.0-dev",
"description": "Razeedeploy: component to download and manage files from s3 object storage",
"main": "./src/index.js",
"bin": "./bin/remoteresources3",
"keywords": [
"kubernetes",
"razee",
"razeedash",
"download",
"cos",
"s3",
"object",
"storage"
],
"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": "npx npm-run-all --npm-path npm eslint markdownlint yaml-lint jsonlint shellcheck",
"eslint": "npx eslint src/",
"markdownlint": "npx markdownlint-cli README.md docs/",
"dockerlint": "npx dockerlint Dockerfile",
"yaml-lint": "npx yaml-lint .travis.yml kubernetes/RemoteResourceS3/resource.yaml",
"jsonlint": "npx jsonlint --quiet build/viewTemplate.json",
"shellcheck": "npx shellcheck build/*.sh"
},
"repository": {
"type": "git",
"url": "git@github.com:razee-io/RemoteResourceS3.git"
},
"contributors": [
{
"name": "Alex Lewitt"
},
{
"name": "Adam King"
}
],
"publishConfig": {
"access": "public"
},
"license": "Apache-2.0",
"dependencies": {
"@razee/kubernetes-util": "^0.3.1",
"@razee/razeedeploy-core": "^0.13.1",
"axios": "^0.25.0",
"bunyan": "^1.8.15",
"clone": "^2.1.2",
"deepmerge": "^4.2.2",
"object-hash": "^2.2.0",
"object-path": "^0.11.8",
"request-promise-native": "^1.0.9",
"xml2js": "^0.4.23"
},
"devDependencies": {
"chai": "^4.3.6",
"dockerlint": "^0.3.9",
"eslint": "^8.7.0",
"mocha": "^9.2.0",
"nock": "^13.2.2",
"npm-check-updates": "^12.2.1",
"npm-run-all": "^4.1.5",
"nyc": "^15.1.0",
"shellcheck": "^1.1.0",
"sinon": "^12.0.1",
"yaml-lint": "^1.2.4"
}
}