-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
46 lines (46 loc) · 1.25 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
{
"name": "dynamic-entry-webpack-plugin",
"version": "2.0.2",
"description": "webpack plugin to make entry point as dynamic import",
"main": "src/index.js",
"license": "MIT",
"homepage": "https://github.com/ppiyush13/dynamic-entry-webpack-plugin",
"author": {
"name": "Piyush Lodaya",
"email": "[email protected]"
},
"scripts": {
"test": "jest --runInBand",
"test:cover": "jest --runInBand --coverage",
"release": "np --no-yarn --no-cleanup --no-2fa"
},
"dependencies": {
"@babel/core": "^7.8.3",
"babel-plugin-transform-async-to-promises": "^0.8.15",
"fast-deep-equal": "^3.1.1",
"isobject": "^4.0.0",
"jsesc": "^2.5.2",
"loader-utils": "^1.4.0"
},
"devDependencies": {
"jest": "^25.1.0",
"np": "^5.2.1"
},
"keywords": [
"webpack",
"webpack-plugin",
"entry",
"dynamic-entry",
"dynamic-import"
],
"repository": {
"type": "git",
"url": "https://github.com/ppiyush13/dynamic-entry-webpack-plugin.git"
},
"bugs": {
"url": "https://github.com/ppiyush13/dynamic-entry-webpack-plugin/issues"
},
"files": [
"src"
]
}