forked from Naggertooth/webpack-require-from
-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
36 lines (36 loc) · 1.17 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
{
"name": "webpack-require-from-naggertooth",
"version": "1.8.2",
"description": "Webpack plugin that allows to configure path or URL for fetching dynamic imports",
"main": "index.js",
"keywords": [
"dynamic import",
"webpack",
"plugin",
"import",
"require.ensure",
"dynamic chunks"
],
"scripts": {
"build-webpack2": "cd ./test/webpack2 && yarn run build && cd ..",
"build-webpack3": "cd ./test/webpack3 && yarn run build && cd ..",
"build-webpack4": "cd ./test/webpack4 && yarn run build && cd ..",
"build-webpack5": "cd ./test/webpack5 && yarn run build && cd ..",
"build-tests": "yarn run build-webpack5 && yarn run build-webpack4 && yarn run build-webpack3 && yarn run build-webpack2",
"test": "yarn run build-tests && yarn run test-slim",
"test-slim": "mocha --exit ./test/common/*.test.js"
},
"peerDependencies": {
"tapable": "^1.0.0"
},
"repository": "https://github.com/agoldis/webpack-require-from.git",
"author": "Andrew Goldis",
"license": "MIT",
"devDependencies": {
"lodash.clonedeep": "^4.5.0",
"memfs": "^3.2.0",
"memory-fs": "^0.4.1",
"mocha": "^5.2.0",
"tapable": "^1.0.0"
}
}