-
Notifications
You must be signed in to change notification settings - Fork 9
/
package.json
42 lines (42 loc) · 1.13 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
{
"name": "config-webpack",
"version": "1.0.4",
"description": "Plugin that makes node-config work with Webpack",
"main": "index.js",
"scripts": {
"build": "babel -d dist src",
"test": "mocha --require babel-register",
"test3": "npm install [email protected] && npm run test",
"test4": "npm install [email protected] && npm run test",
"pretest": "npm run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/arthanzel/node-config-webpack.git"
},
"keywords": [
"config",
"node-config",
"webpack",
"plugin"
],
"author": "Martin Hanzel <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/arthanzel/node-config-webpack/issues"
},
"homepage": "https://github.com/arthanzel/node-config-webpack#readme",
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-preset-env": "^1.6.1",
"babel-register": "^6.26.0",
"chai": "^4.1.2",
"config": "^1.30.0",
"mocha": "^5.0.2",
"webpack": "^4.1.1"
},
"peerDependencies": {
"config": "^1.30.0 || ^2.0.0 || ^3.0.0",
"webpack": "^1.0.0 || ^2.0.0 || ^3.0.0 || ^4.0.0"
}
}