forked from ahultgren/node-varium
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
34 lines (34 loc) · 696 Bytes
/
package.json
File metadata and controls
34 lines (34 loc) · 696 Bytes
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
{
"name": "varium",
"version": "1.0.1",
"description": "Declare and validate environment variables",
"engines": {
"node": ">=6.5"
},
"main": "src",
"scripts": {
"test": "eslint --fix . && mocha --recursive './{,!(node_modules)/**/}*.test.js'"
},
"keywords": [
"env",
"environment",
"manifest",
"config",
"settings",
"var",
"variable"
],
"author": "Andreas Hultgren",
"license": "ISC",
"dependencies": {
"debug": "^2.6.1",
"ramda": "^0.23.0"
},
"devDependencies": {
"chai": "^3.5.0",
"eslint": "^3.19.0",
"eslint-config-airbnb-base": "^11.2.0",
"eslint-plugin-import": "^2.6.1",
"mocha": "^3.0.2"
}
}