-
Notifications
You must be signed in to change notification settings - Fork 8
/
package.json
51 lines (51 loc) · 1.18 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
{
"license": "MIT",
"name": "fuge-config",
"author": "Peter Elger (https://github.com/pelger)",
"version": "2.0.2",
"contributors": [],
"keywords": [
"microservices",
"fuge",
"configuration",
"docker",
"kubernetes"
],
"repository": {
"type": "git",
"url": "https://github.com/apparatus/fuge-config.git"
},
"main": "./index.js",
"engines": {
"node": ">=4.0.0"
},
"scripts": {
"lint": "echo 'linting...' && spacey-standard | snazzy",
"test": "tap 'test/**/*.test.js' --branches=85 --statements=90 --functions=90 --lines=90",
"check": "npm run test && npm run lint",
"coverage": "npm run test -- --cov --coverage-report=html",
"coveralls": "npm run test -- --cov --coverage-report=text-lcov | coveralls"
},
"nyc": {
"exclude": [
"**/test/**/*.js"
]
},
"devDependencies": {
"coveralls": "^3.0.2",
"json-stringify-safe": "^5.0.1",
"omit-deep": "^0.3.0",
"pre-commit": "^1.1.3",
"snazzy": "^7.0.0",
"spacey-standard": "^4.0.0",
"tap": "^12.0.1"
},
"pre-commit": [
"check"
],
"dependencies": {
"js-yaml": "^3.8.1",
"jsonschema": "^1.1.0",
"lodash": "^4.17.10"
}
}