forked from doublenot/refs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
57 lines (57 loc) · 1.41 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
{
"name": "refs",
"version": "0.9.4",
"description": "Compile and merge YAML, JSON or INI config files together through file path references",
"main": "index.js",
"preferGlobal": true,
"bin": {
"refs": "bin/refs.js"
},
"engines": {
"node": ">=6.4.4"
},
"scripts": {
"test": "npm run lint && npm run test-all",
"coverage": "istanbul cover _mocha test/all",
"coveralls": "istanbul cover _mocha test/all && cat ./coverage/lcov.info | ./node_modules/coveralls/bin/coveralls.js && rm -rf ./coverage",
"lint": "./node_modules/.bin/eslint index.js lib/ bin/ test/",
"test-all": "mocha test/all"
},
"repository": {
"type": "git",
"url": "https://github.com/doublenot/refs.git"
},
"keywords": [
"json",
"yaml",
"ini",
"ref",
"refs",
"reference",
"references",
"yaml-ref",
"json-ref",
"compile"
],
"author": "doublenot",
"license": "MIT",
"dependencies": {
"bluebird": "^3.4.6",
"commander": "^2.9.0",
"ini": "^1.3.4",
"node-yaml": "^3.1.1"
},
"devDependencies": {
"coveralls": "^3.0.2",
"eslint": "^5.6.1",
"eslint-config-airbnb": "^17.1.0",
"eslint-plugin-import": "^2.14.0",
"eslint-plugin-jsx-a11y": "^6.1.2",
"eslint-plugin-promise": "^4.0.1",
"eslint-plugin-react": "^7.11.1",
"istanbul": "^0.4.5",
"mocha": "^5.2.0",
"should": "^13.2.3",
"testdouble": "^3.8.2"
}
}