-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
58 lines (58 loc) · 1.15 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
{
"name": "@echo-health/kuboid",
"version": "0.4.3",
"license": "MIT",
"engines": {
"node": ">=6.10.2"
},
"bin": {
"kuboid": "bin/kuboid.js"
},
"scripts": {
"test": "jest",
"lint": "eslint .",
"format": "prettier --trailing-comma es5 --single-quote --tab-width 4 --write"
},
"dependencies": {
"chalk": "1.1.3",
"cli-table": "0.3.1",
"commander": "2.9.0",
"inquirer": "3.1.1",
"semver": "5.3.0",
"shelljs": "0.7.8",
"tar-fs": "1.15.3",
"validator": "7.0.0",
"yamljs": "0.2.10"
},
"devDependencies": {
"eslint": "4.0.0",
"eslint-config-airbnb-base": "11.2.0",
"eslint-plugin-import": "2.3.0",
"jest": "20.0.4",
"nsp": "2.6.3",
"prettier": "1.4.4"
},
"jest": {
"collectCoverage": true,
"collectCoverageFrom": [
"lib/**/*.js",
"bin/**/*.js"
],
"coverageReporters": [
"json",
"lcov",
"text-summary"
]
},
"repository": {
"type": "git",
"url": "[email protected]:echo-health/kuboid.git"
},
"author": "Echo",
"contributors": [
{
"name": "Ryan McGrath",
"email": "[email protected]"
}
]
}