forked from BonnierNews/exp-config
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
41 lines (41 loc) · 938 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
{
"name": "exp-config",
"description": "Simple configuration management",
"version": "2.0.1",
"author": "AB Kvällstidningen Expressen",
"contributors": [
"Gabriel Falkenberg <[email protected]>",
"Jens Carlén",
"Joel Abrahamsson <[email protected]>",
"William Sköld <[email protected]>",
"Pål Edman"
],
"scripts": {
"test": "mocha --reporter spec && eslint . --cache"
},
"main": "index.js",
"repository": "git://github.com/ExpressenAB/exp-config.git",
"keywords": [
"configuration"
],
"license": {
"type": "MIT",
"url": "http://github.com/ExpressenAB/exp-config/raw/master/LICENSE"
},
"dependencies": {
"dotenv": "~2.0.0",
"lodash.merge": "^4.6.0"
},
"engines": {
"node": ">=4"
},
"devDependencies": {
"chai": "~3.5.0",
"eslint": "^3.3.1",
"mocha": "~3.0.2"
},
"files": [
"index.js",
"LICENSE"
]
}