-
Notifications
You must be signed in to change notification settings - Fork 20
/
package.json
38 lines (38 loc) · 864 Bytes
/
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
{
"name": "rewire-webpack",
"version": "1.0.1",
"description": "Dependency injection for webpack bundles",
"keywords": [
"dependency",
"injection",
"mock",
"unit",
"test",
"leak",
"webpack",
"browser",
"inspect"
],
"author": {
"name": "Johannes Ewald",
"email": "mail@johannesewald.de"
},
"main": "lib/RewirePlugin.js",
"homepage": "https://github.com/jhnns/rewire-webpack",
"repository": "git://github.com/jhnns/rewire-webpack.git",
"license": "Unlicense",
"dependencies": {
"enhanced-resolve": "^0.9.1",
"webpack": "^1.12.6"
},
"devDependencies": {
"expect.js": "^0.3.1",
"mocha": "^2.3.4",
"mocha-loader": "^0.7.1",
"rewire": "^2.5.0",
"webpack-dev-server": "^1.12.1"
},
"scripts": {
"test": "webpack-dev-server --config ./test/webpack.config.js"
}
}