forked from razee-io/MustacheTemplate
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
67 lines (67 loc) · 1.87 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
{
"name": "@razee/mustachetemplate",
"version": "0.0.0-dev",
"description": "Razee: component to use the Mustache template processor on kubernetes resource configurations.",
"main": "./src/index.js",
"bin": "./bin/mustachetemplate",
"keywords": [
"kubernetes",
"razee",
"razeedash",
"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 eslint dockerlint yaml-lint markdownlint jsonlint shellcheck",
"eslint": "npx eslint src/",
"dockerlint": "npx dockerlint Dockerfile",
"yaml-lint": "npx yamllint .travis.yml kubernetes/MustacheTemplate/resource.yaml",
"markdownlint": "npx markdownlint README.md docs/",
"jsonlint": "npx jsonlint --quiet build/viewTemplate.json",
"shellcheck": "npx shellcheck build/*.sh"
},
"repository": {
"type": "git",
"url": "[email protected]:razee-io/MustacheTemplate.git"
},
"contributors": [
{
"name": "Alex Lewitt"
},
{
"name": "Adam King"
}
],
"publishConfig": {
"access": "public"
},
"license": "Apache-2.0",
"dependencies": {
"@razee/kubernetes-util": "^0.1.6",
"@razee/razeedeploy-core": "^0.10.3",
"handlebars": "^4.7.6",
"js-yaml": "^3.14.0",
"mustache": "^4.0.1",
"object-path": "^0.11.5",
"pino": "^6.7.0"
},
"devDependencies": {
"chai": "^4.2.0",
"dockerlint": "^0.3.9",
"eslint": "^7.11.0",
"jsonlint": "^1.6.3",
"markdownlint-cli": "^0.25.0",
"mocha": "^8.2.0",
"nock": "^13.0.4",
"npm-check-updates": "^10.0.0",
"npm-run-all": "^4.1.5",
"nyc": "^15.1.0",
"rewire": "^5.0.0",
"shellcheck": "^0.4.4",
"sinon": "^9.2.0",
"yaml-lint": "^1.2.4"
}
}