-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
36 lines (36 loc) · 841 Bytes
/
package.json
File metadata and controls
36 lines (36 loc) · 841 Bytes
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
{
"name": "appfig",
"version": "1.0.0",
"description": "An extremely useful configuration loader.",
"main": "index.js",
"scripts": {
"test": "mocha ./test/**/*.test.js",
"test:watch": "npm run test -- --watch",
"test:coverage": "nyc yarn test",
"test:coverage:report": "nyc report --reporter=text-lcov | coveralls",
"lint": "eslint ."
},
"author": "Ryan Ricard",
"license": "MIT",
"keywords": [
"nconf",
"recurpolate",
"configuration",
"config",
"JSON"
],
"dependencies": {
"lodash": "^4.17.4",
"nconf": "^0.9.1",
"recurpolate": "^1.2.0"
},
"devDependencies": {
"chai": "^4.1.2",
"coveralls": "^3.0.2",
"eslint": "^4.14.0",
"eslint-config-airbnb": "^16.1.0",
"eslint-plugin-import": "^2.8.0",
"mocha": "^4.0.1",
"nyc": "^12.0.2"
}
}