-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
55 lines (55 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
{
"name": "hmr-filter-webpack-plugin",
"version": "1.0.0",
"description": "Disable Hot Module Replacement for certain chunks.",
"author": "dangreen",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/TrigenSoftware/hmr-filter-webpack-plugin"
},
"bugs": {
"url": "https://github.com/TrigenSoftware/hmr-filter-webpack-plugin/issues"
},
"main": "lib/index.js",
"engines": {
"node": ">=8.0.0"
},
"scripts": {
"lint": "trigen-scripts lint",
"jest": "trigen-scripts jest",
"checkSize": "trigen-scripts checkSize",
"test": "trigen-scripts test",
"start": "trigen-scripts start",
"build:testBundle": "NODE_ENV=test babel-node test/buildTestBundle",
"build": "trigen-scripts build",
"cleanPublish": "trigen-scripts cleanPublish"
},
"keywords": [
"HotModuleReplacement",
"webpack",
"plugin",
"filter"
],
"peerDependencies": {
"webpack": "^3.0.0 || ^4.0.0"
},
"devDependencies": {
"@size-limit/preset-small-lib": "^2.1.1",
"@trigen/scripts": "3",
"@trigen/scripts-plugin-babel": "3",
"@trigen/scripts-plugin-eslint": "3",
"@trigen/scripts-plugin-jest": "3",
"@trigen/scripts-plugin-rollup": "3",
"@trigen/scripts-plugin-size-limit": "3",
"@trigen/scripts-preset-lib": "3",
"eslint-plugin-jest": "^22.6.4",
"memory-fs": "^0.5.0",
"rollup-plugin-eslint": "^6.0.0",
"webpack": "^4.39.3",
"worker-loader": "^2.0.0"
},
"files": [
"lib"
]
}