-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
44 lines (43 loc) · 1006 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": "easy-configuration",
"description": "[ABANDONED] Simply extensible loader for json config files",
"version": "2.0.2",
"author": {
"name": "David Kudera",
"email": "kudera.d@gmail.com"
},
"keywords": [
"config",
"configurator",
"configuration",
"setup",
"settings",
"json"
],
"repository": {
"type": "git",
"url": "git@github.com:Carrooi/Node-EasyConfiguration.git"
},
"license": "MIT",
"engines": {
"node": "*"
},
"main": "./lib/EasyConfiguration.js",
"dependencies": {
"recursive-merge": "~1.2.0",
"callsite": "~1.0.0"
},
"devDependencies": {
"chai": "~1.8.0",
"mocha": "~1.16.2",
"mocha-phantomjs": "~3.3.1",
"phantomjs": "~1.9.2-6"
},
"scripts": {
"test": "npm run test-node && npm run test-browser",
"build-and-test": "npm run test-build && npm run test",
"test-build": "cd ./test/browser; simq build;",
"test-node": "mocha ./test/node/index.js --reporter spec",
"test-browser": "mocha-phantomjs ./test/browser/index.html"
}
}