forked from rolodato/dotenv-safe
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
34 lines (34 loc) · 817 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
{
"name": "dotenv-safe",
"version": "8.2.1",
"description": "Load environment variables from .env and ensure they are defined",
"keywords": [
"dotenv"
],
"license": "MIT",
"author": "Rodrigo López Dato <[email protected]>",
"files": [
"index.js",
"config.js",
"MissingEnvVarsError.js"
],
"main": "index.js",
"repository": {
"type": "git",
"url": "git://github.com/rolodato/dotenv-safe.git"
},
"scripts": {
"pretest": "./node_modules/eslint/bin/eslint.js index.js config.js MissingEnvVarsError.js test/.",
"test": "HELLO=fromTheOtherSide mocha"
},
"dependencies": {
"dotenv": "^8.2.0"
},
"devDependencies": {
"chai": "^4.2.0",
"eslint": "^6.8.0",
"fs-extra": "^9.0.0",
"lodash.clonedeep": "^4.5.0",
"mocha": "^7.1.2"
}
}