-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
39 lines (39 loc) · 1015 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
{
"name": "user-config",
"version": "0.1.0",
"description": "Easy user application configuration management for node and web applications",
"main": "source/index.js",
"scripts": {
"test": "npm run test:node",
"test:node": "mocha -r test/node/index.js test/node/**/*.spec.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/perry-mitchell/user-config.git"
},
"keywords": [
"config",
"configuration",
"settings",
"user"
],
"author": "Perry Mitchell <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/perry-mitchell/user-config/issues"
},
"homepage": "https://github.com/perry-mitchell/user-config#readme",
"dependencies": {
"deepmerge": "~1.3.2",
"detect-node": "~2.0.3",
"dot-prop": "~4.1.1",
"graceful-fs": "~4.1.11",
"write-file-atomic": "~2.0.0",
"xdg-basedir": "~3.0.0"
},
"devDependencies": {
"chai": "~3.5.0",
"mocha": "~3.3.0",
"sinon": "~2.2.0"
}
}