-
Notifications
You must be signed in to change notification settings - Fork 8
/
package.json
51 lines (51 loc) · 1.11 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
{
"name": "@risingstack/anchor",
"version": "1.0.3",
"description": "Creates Helm charts from Kubernetes resources.",
"main": "src/index.js",
"scripts": {
"test": "mocha test/setup.js 'src/**/*.spec.js'",
"lint": "eslint test src"
},
"repository": {
"type": "git",
"url": "git+https://github.com/RisingStack/anchor.git"
},
"keywords": [
"kubernetes",
"k8s",
"helm",
"helm chart",
"backup"
],
"author": "RisingStack, Inc.",
"license": "MIT",
"bugs": {
"url": "https://github.com/RisingStack/anchor/issues"
},
"homepage": "https://github.com/RisingStack/anchor#readme",
"dependencies": {
"js-yaml": "3.8.4",
"lodash": "4.17.4",
"mkdirp": "0.5.1",
"rimraf": "2.6.1"
},
"devDependencies": {
"chai": "4.0.2",
"eslint": "4.0.0",
"eslint-config-airbnb-base": "11.2.0",
"eslint-plugin-import": "2.3.0",
"eslint-plugin-promise": "3.5.0",
"mocha": "3.4.2",
"pre-commit": "1.2.2",
"sinon": "2.3.5",
"sinon-chai": "2.11.0"
},
"pre-commit": [
"lint",
"test"
],
"engines": {
"node": ">=6.0.0"
}
}