-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
32 lines (32 loc) · 776 Bytes
/
package.json
File metadata and controls
32 lines (32 loc) · 776 Bytes
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
{
"name": "env-stage-loader",
"version": "1.1.3",
"description": "Loads `.env` files in order based on `process.env.NODE_ENV` value with [stage].local support",
"main": "index.js",
"scripts": {
"test": "./run-tests.sh",
"publish": "git push origin && git push origin --tags",
"release:patch": "npm version patch && npm publish",
"release:minor": "npm version minor && npm publish",
"release:major": "npm version major && npm publish"
},
"files": [
"index.js",
"README.md"
],
"keywords": [
"env",
"env-loader",
"env-stages",
"config"
],
"author": "DavidWells",
"license": "MIT",
"dependencies": {
"dotenv": "^17.2.2",
"dotenv-expand": "^12.0.3"
},
"devDependencies": {
"uvu": "^0.5.6"
}
}