-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
36 lines (36 loc) · 878 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
{
"name": "get-conf",
"version": "1.0.0",
"description": "Get Configuration",
"main": "./src/index.js",
"scripts": {
"test": "NODE_ENV=test node ./node_modules/.bin/_mocha \"./**/*.spec.js\"",
"prepublish": "npm run test",
"watch-test": "./node_modules/.bin/nodemon --exec 'npm run test'"
},
"repository": {
"type": "git",
"url": "git+https://github.com/markusdaehn/get-conf.git"
},
"keywords": [
"Config",
"Server"
],
"author": "Markus Daehn",
"license": "ISC",
"bugs": {
"url": "https://github.com/markusdaehn/get-conf/issues"
},
"homepage": "https://github.com/markusdaehn/get-conf#readme",
"dependencies": {
"deep-extend": "^0.4.1",
"glob": "^7.1.1",
"ramda": "^0.22.1"
},
"devDependencies": {
"chai": "^3.5.0",
"mocha": "^3.1.2",
"nodemon": "^1.11.0",
"sinon": "^1.17.6"
}
}