-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
52 lines (52 loc) · 1.36 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
48
49
50
51
52
{
"name": "dotenv-flow-webpack",
"version": "2.0.0",
"description": "A webpack plugin that allows you to securely use environment variables within your javascript web application, loading them using dotenv-flow's `.env*` files loading strategy.",
"keywords": [
"dotenv-flow",
"webpack",
"node_env",
"process.env",
"development",
"test",
"production",
"local",
"env",
"environment",
"variables"
],
"homepage": "https://github.com/kerimdzhanov/dotenv-flow-webpack#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/kerimdzhanov/dotenv-flow-webpack.git"
},
"bugs": {
"url": "https://github.com/kerimdzhanov/dotenv-flow-webpack/issues"
},
"main": "lib/dotenv-flow-webpack.js",
"files": [],
"peerDependencies": {
"webpack": "^1 || ^2 || ^3 || ^4 || ^5"
},
"dependencies": {
"dotenv-flow": "^4.0.0-rc.3"
},
"devDependencies": {
"@types/sinon-chai": "^3.2.9",
"chai": "^4.3.8",
"conventional-changelog-cli": "^2.0.17",
"mocha": "^10.2.0",
"sinon": "^16.0.0",
"sinon-chai": "^3.7.0",
"webpack": "^5.88.2"
},
"engines": {
"node": ">= 12.0.0"
},
"scripts": {
"test": "mocha -r mocha.conf.js test/*.spec.js",
"changelog": "conventional-changelog -p angular -i CHANGELOG.md -s"
},
"author": "Dan Kerimdzhanov",
"license": "MIT"
}