forked from motdotla/dotenv
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
48 lines (48 loc) · 985 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
41
42
43
44
45
46
47
48
{
"name": "dotenv",
"version": "8.0.0",
"description": "Loads environment variables from .env file",
"main": "lib/main.js",
"scripts": {
"flow": "flow",
"lint": "standard",
"postlint": "standard-markdown",
"pretest": "npm run lint",
"test": "tap tests/*.js --100",
"prerelease": "npm test",
"release": "standard-version"
},
"repository": {
"type": "git",
"url": "git://github.com/motdotla/dotenv.git"
},
"keywords": [
"dotenv",
"env",
".env",
"environment",
"variables",
"config",
"settings"
],
"readmeFilename": "README.md",
"license": "BSD-2-Clause",
"devDependencies": {
"decache": "^4.5.1",
"flow-bin": "^0.98.0",
"sinon": "^7.3.2",
"standard": "^12.0.1",
"standard-markdown": "^5.0.1",
"standard-version": "^5.0.2",
"tap": "^13.1.2"
},
"dependencies": {},
"engines": {
"node": ">=8"
},
"standard": {
"ignore": [
"flow-typed/"
]
}
}