-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
53 lines (53 loc) · 1.18 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
53
{
"name": "gulp-env-loader",
"version": "1.3.0",
"description": "A gulp plugin for loading environment variables and replacing them in the contents of files.",
"main": "./libs/index.js",
"types": "./types/index.d.ts",
"files": [
"libs",
"types"
],
"scripts": {
"dev": "npx gulp --mode=development",
"build": "npx gulp --mode=production"
},
"engines": {
"node": ">=14"
},
"publishConfig": {
"registry": "https://registry.npmjs.org/",
"access": "public"
},
"keywords": [
"gulp-env",
"gulp-env-loader",
"env loader",
"load env",
"dotenv",
"environment",
"variables",
"gulp-plugin"
],
"homepage": "https://github.com/Meqn/gulp-env-loader",
"repository": {
"type": "git",
"url": "git+https://github.com/Meqn/gulp-env-loader.git"
},
"author": "Mervin <mengqing723@gmail.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/Meqn/gulp-env-loader/issues"
},
"dependencies": {
"@types/node": "*",
"dotenv": "^16.0.3",
"dotenv-expand": "^10.0.0",
"minimist": "^1.2.8",
"plugin-error": "^2.0.1",
"through2": "^4.0.2"
},
"devDependencies": {
"gulp": "^4.0.2"
}
}