-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
40 lines (40 loc) · 945 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
{
"name": "lookenv",
"version": "1.0.1",
"description": "Set rules for the environment variables in your project. Works great with dotenv",
"main": "src/index.js",
"repository": "https://github.com/RodrigoEspinosa/lookenv",
"author": "rec <[email protected]>",
"license": "MIT",
"scripts": {
"test": "TESTING=true ./bin/lookenv.js -- ava test/test-*.js",
"precommit": "lint-staged",
"lint": "prettier src/*.js test/*.js --write"
},
"lint-staged": {
"*.js": [
"yarn lint",
"git add"
]
},
"bin": {
"lookenv": "./bin/lookenv.js"
},
"dependencies": {
"commander": "^2.11.0",
"cosmiconfig": "^3.1.0",
"dotenv": "^4.0.0"
},
"prettier": {
"semi": false,
"single-quote": true
},
"devDependencies": {
"ava": "^0.22.0",
"husky": "^0.14.3",
"joi": "^13.0.2",
"lint-staged": "^4.3.0",
"prettier": "^1.8.2",
"release": "^4.0.2"
}
}