-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
37 lines (37 loc) · 907 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
{
"name": "checkdotenv",
"version": "2.0.2",
"description": "Module aimed to verify the presence of ENV vars",
"main": "lib/checker.js",
"scripts": {
"check": "nsp check",
"test": "lab -lL -c -r console -o stdout -r lcov -o .coverage/lcov.info test/initialize.js test/**/*_spec.js"
},
"keywords": [
"env",
"variables",
"checker"
],
"author": "Wender Freese <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/wenderjean/checkdotenv/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/wenderjean/checkdotenv.git"
},
"devDependencies": {
"code": "^4.0.0",
"eslint": "^3.9.1",
"eslint-config-hapi": "^10.0.0",
"eslint-plugin-hapi": "^4.0.0",
"lab": "^11.1.0",
"nsp": "^2.6.2"
},
"dependencies": {
"chalk": "^2.1.0",
"dotenv": "^4.0.0",
"lodash": "^4.17.2"
}
}