forked from kerimdzhanov/dotenv-flow
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
47 lines (47 loc) · 1.11 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
46
47
{
"name": "dotenv-flow",
"version": "3.3.0",
"description": "Loads environment variables from `.env.[development|test|production][.local]` files",
"keywords": [
"dotenv",
"node_env",
"development",
"test",
"production",
"local"
],
"homepage": "https://github.com/kerimdzhanov/dotenv-flow#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/kerimdzhanov/dotenv-flow.git"
},
"bugs": {
"url": "https://github.com/kerimdzhanov/dotenv-flow/issues"
},
"main": "lib/dotenv-flow.js",
"files": [
"lib/env-options.js",
"lib/cli-options.js",
"config.js"
],
"dependencies": {
"dotenv": "^16.1.4"
},
"devDependencies": {
"chai": "^4.3.0",
"conventional-changelog-cli": "^2.0.23",
"mocha": "7.2.0",
"sinon": "^9.0.2",
"sinon-chai": "^3.5.0",
"tmp": "^0.2.1"
},
"engines": {
"node": ">= 8.0.0"
},
"scripts": {
"test": "mocha -r mocha.conf.js test/{unit,integration}/*.spec.js",
"changelog": "conventional-changelog -p angular -i CHANGELOG.md -s"
},
"author": "Dan Kerimdzhanov",
"license": "MIT"
}