-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
35 lines (35 loc) · 828 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
{
"name": "webpack-bundle-update-hook-plugin",
"version": "1.1.0",
"description": "Add a tapable 'bundle-update' hook to webpack. On bundle updates registered plugins get lists of new, changed and removed modules.",
"main": "src/plugin.js",
"scripts": {
"test": "mocha test/test.js"
},
"repository": {
"type": "git",
"url": "https://github.com/skleeschulte/webpack-bundle-update-hook-plugin.git"
},
"keywords": [
"webpack",
"plugin",
"tapable",
"hook",
"bundle",
"update",
"new",
"changed",
"removed"
],
"author": "Stefan Kleeschulte",
"license": "MIT",
"devDependencies": {
"chai": "^3.5.0",
"memory-fs": "^0.4.1",
"mocha": "^3.2.0",
"webpack": "^1.12.10 || ^2.0.0"
},
"peerDependencies": {
"webpack": "^1.12.10 || ^2.0.0"
}
}