-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
41 lines (41 loc) · 1.31 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
{
"name": "simplyconfig",
"version": "0.4.0",
"description": "Hierarchical configuration. A replacement to nconf.",
"main": "index.js",
"repository": {
"type": "git",
"url": "git://github.com/Offirmo/simplyconfig.git"
},
"scripts": {
"lint": "eslint .",
"nsp": "nsp check",
"test": "export FOO_API_KEY=27A13 && export BAR_API_KEY=A312 && export NODEJS__server__port=1234 && export FOO__server__port=2345 && export NODEJSxxxserverxxxport=3456 && mocha --debug --check-leaks --require tests/init.js lib/*.spec.js tests/*.spec.js",
"testsingle": "export FOO_API_KEY=27A13 && export BAR_API_KEY=A312 && export NODEJS__server__port=1234 && export FOO__server__port=2345 && export NODEJSxxxserverxxxport=3456 && mocha --debug --check-leaks --require tests/init.js lib/store.spec.js"
},
"xx-commented-pre-commit": [
"lint"
],
"keywords": [
"config",
"configuration",
"node"
],
"author": "Offirmo <offirmo.net@gmail.com>",
"license": "Unlicense",
"dependencies": {
"amdefine": "~1.0.0",
"callsite": "~1.0.0",
"dotenv": "~2.0.0",
"lodash": "~4.13.1",
"optimist": "~0.6.1"
},
"devDependencies": {
"chai": "^3.4.1",
"eslint": "^2.4.0",
"eslint-plugin-mocha": "^2.0.0",
"mocha": "^2.5.0",
"nsp": "^2.0.2",
"pre-commit": "^1.1.2"
}
}