-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
43 lines (43 loc) · 986 Bytes
/
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
{
"name": "manis",
"version": "1.0.0",
"description": "Find and read your configuration files recursively",
"main": "lib/manis.js",
"scripts": {
"lint": "fecs lib test/**/*.spec.js --type=js",
"coverage": "jest test --coveragegit ",
"test": "npm run lint && npm run coverage",
"coveralls": "cat ./coverage/lcov.info | coveralls"
},
"repository": {
"type": "git",
"url": "https://github.com/ecomfe/manis"
},
"keywords": [
"config",
"loader",
"rcloader",
"json",
"yaml"
],
"author": "chris <[email protected]>",
"license": "MIT",
"engines": {
"node": ">=8"
},
"bugs": {
"url": "https://github.com/ecomfe/manis/issues"
},
"homepage": "https://github.com/ecomfe/manis",
"devDependencies": {
"coveralls": "latest",
"fecs": "latest",
"jest": "^24.9.0",
"mock-fs": "^4.10.3"
},
"dependencies": {
"js-yaml": "^3.5.1",
"merge": "^1.2.1",
"strip-json-comments": "^2.0.0"
}
}