forked from jhnns/rewire-webpack
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
55 lines (55 loc) · 1.55 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
{
"name": "rewire-webpack-plugin",
"version": "1.0.0",
"description": "Webpack plugin to enable rewire in webpack bundles (fork of rewire-webpack)",
"keywords": [
"webpack",
"plugin",
"rewire",
"testing",
"unit testing"
],
"author": {
"name": "Rens Baardman",
"email": "dev@rensbaardman.nl"
},
"main": "lib/RewireWebpackPlugin.js",
"files": [
"lib/*"
],
"homepage": "https://github.com/rensbaardman/rewire-webpack-plugin",
"repository": "git://github.com/rensbaardman/rewire-webpack-plugin.git",
"license": "MIT",
"peerDependencies": {
"webpack": ">=4.16.0",
"rewire": ">=2.5.1"
},
"dependencies": {
"enhanced-resolve": "^4.1.0"
},
"devDependencies": {
"chai": "^4.2.0",
"del": "^4.1.1",
"expect.js": "^0.3.1",
"karma": "^4.1.0",
"karma-chrome-launcher": "^2.2.0",
"karma-firefox-launcher": "^1.1.0",
"karma-mocha": "^1.3.0",
"karma-mocha-reporter": "^2.2.5",
"karma-webpack": "^4.0.0",
"memory-fs": "^0.4.1",
"mocha": "^6.1.4",
"mocha-loader": "^2.0.1",
"np": "^5.0.3",
"npm-run-all": "^4.1.5",
"rewire": "github:rensbaardman/rewire",
"webpack": ">=4.16.0"
},
"scripts": {
"test": "npm-run-all test:*",
"test:unit": "mocha test/unit/RewireWebpackPlugin.test.js",
"test:functional": "mocha test/functional/RewireWebpackPlugin.test.js",
"test:shared": "karma start test/rewire-shared-test-cases/rewire-shared-test-cases.karma.config.js",
"test:installation": "mocha test/installation/RewireWebpackPlugin.test.js"
}
}