-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
66 lines (66 loc) · 1.48 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
54
55
56
57
58
59
60
61
62
63
64
65
66
{
"name": "consul-env-webpack-plugin",
"version": "1.0.2",
"description": "A simple webpack plugin to parse consul KV to process.env.",
"main": "index.js",
"scripts": {
"lint": "standard 'src/**/*.js'",
"test": "jest",
"prebuild": "yarn lint",
"build": "babel --copy-files --out-dir dist src/index.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/marlonmleite/consul-env-webpack-plugin.git"
},
"keywords": [
"consul",
"env",
"environment",
"variables",
"process.env",
"webpack",
"plugin"
],
"author": "Marlon Maxwel <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/marlonmleite/consul-env-webpack-plugin/issues"
},
"homepage": "https://github.com/marlonmleite/consul-env-webpack-plugin#readme",
"peerDependencies": {
"webpack": "^4"
},
"devDependencies": {
"@babel/cli": "^7.2.3",
"@babel/core": "^7.2.2",
"@babel/plugin-transform-runtime": "^7.2.0",
"@babel/preset-env": "^7.3.1",
"babel-eslint": "^10.0.1",
"eslint": "^5.12.1",
"jest": "^24.0.0",
"standard": "^12.0.1",
"webpack": "^4.29.0"
},
"dependencies": {
"@babel/runtime": "^7.3.1",
"consul": "^0.34.1"
},
"files": [
"dist"
],
"standard": {
"parser": "babel-eslint",
"ignore": [
"*.test.js"
]
},
"babel": {
"presets": [
"@babel/preset-env"
],
"plugins": [
"@babel/plugin-transform-runtime"
]
}
}