-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
69 lines (69 loc) · 1.85 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
{
"name": "@razee/featureflagsetld",
"version": "0.0.0-dev",
"description": "Razee: component to pull feature flag values into a kubernetes environment",
"main": "./src/index.js",
"bin": "./bin/featureflagsetld",
"keywords": [
"kubernetes",
"razee",
"razeedash",
"razeedeploy",
"download",
"feature",
"flag",
"version",
"control",
"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": "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 kubernetes/FeatureFlagSetLD/*.yaml .travis.yml",
"jsonlint": "npx jsonlint --quiet build/viewTemplate.json",
"shellcheck": "npx shellcheck build/*.sh"
},
"repository": {
"type": "git",
"url": "[email protected]:razee-io/FeatureFlagSetLD.git"
},
"contributors": [
{
"name": "Alex Lewitt"
},
{
"name": "Adam King"
}
],
"publishConfig": {
"access": "public"
},
"license": "Apache-2.0",
"dependencies": {
"@razee/kubernetes-util": "^1.1.20",
"@razee/razeedeploy-core": "^1.3.24",
"bunyan": "^1.8.15",
"launchdarkly-node-server-sdk": "^7.0.4",
"object-path": "^0.11.8"
},
"devDependencies": {
"chai": "^4.3.6",
"dockerlint": "^0.3.9",
"eslint": "^8.57.0",
"markdownlint": "^0.36.1",
"mocha": "^10.8.2",
"nock": "^13.5.6",
"npm-run-all": "^4.1.5",
"nyc": "^15.1.0",
"rewire": "^6.0.0",
"shellcheck": "^1.1.0",
"sinon": "^14.0.0",
"yaml-lint": "^1.7.0"
}
}