-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
52 lines (52 loc) · 1.26 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
{
"name": "spur-config",
"description": "Configuration framework to help manage complex application configurations in Node.js.",
"version": "2.0.0-rc.1",
"main": "./src/SpurConfig",
"author": {
"name": "Agustin Colchado",
"email": "agustin@colchado.com"
},
"publishConfig": {
"registry": "https://registry.npmjs.org"
},
"keywords": [
"spur",
"spur-framework",
"config",
"configuration"
],
"license": "MIT",
"scripts": {
"lint": "eslint .",
"pretest": "npm run lint",
"test-unit": "mocha ./test/unit/",
"test-integration": "mocha ./test/integration/",
"test": "npm run test-unit && npm run test-integration"
},
"bugs": {
"url": "https://github.com/opentable/spur-config/issues"
},
"homepage": "https://github.com/opentable/spur-config",
"repository": {
"type": "git",
"url": "git://github.com/opentable/spur-config.git"
},
"dependencies": {
"lodash.foreach": "^4.5.0",
"lodash.isfunction": "^3.0.8",
"lodash.merge": "^4.6.0",
"mkdirp": "^0.5.1",
"require-all": "^2.0.0"
},
"devDependencies": {
"chai": "^4.1.1",
"eslint": "^4.5.0",
"eslint-plugin-node": "^5.1.1",
"mocha": "^3.5.0",
"sinon": "^3.2.1"
},
"engines": {
"node": ">=6.0.0"
}
}