-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
45 lines (45 loc) · 1.09 KB
/
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
42
43
44
45
{
"name": "dotenv-loader",
"version": "2.0.1",
"description": "Load additional environmental variables from single .env file and manage them on runtime.",
"author": "Paweł Zadrożny <[email protected]> (http://pawelzny.com/)",
"scripts": {
"test": "env NODE_ENV=test ./node_modules/.bin/mocha",
"coverage": "env NODE_ENV=test ./node_modules/.bin/istanbul cover ./node_modules/.bin/_mocha"
},
"main": "dotenv-loader.js",
"repository": {
"type": "git",
"url": "https://github.com/pawelzny/dotenv-loader"
},
"bugs": {
"url": "https://github.com/pawelzny/dotenv-loader/issues"
},
"homepage": "https://pawelzny.com/npm/dotenv-loader",
"keywords": [
"env",
".env",
"dotenv",
"parser",
"loader",
"environment",
"settings",
"config",
"environment variables"
],
"engines": {
"node": ">=8.9.0"
},
"dependencies": {
"last-callback": "2.0.0",
"typer": "1.1.0"
},
"devDependencies": {
"chai": "4.1.2",
"eslint": "4.15.0",
"istanbul": "0.4.4",
"mocha": "5.0.0",
"sinon": "4.1.6"
},
"license": "MIT"
}