-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
50 lines (50 loc) · 1.24 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
{
"name": "dynamic-vendor-webpack-plugin",
"version": "1.0.0",
"description": "A Webpack plugin that gives you a way to import vendors with dynamic variable and specific code splitting",
"main": "dist/DynamicVendorPlugin.js",
"repository": "[email protected]:bios21/dynamic-vendor-webpack-plugin.git",
"author": "Lilian Saget-Lethias <[email protected]>",
"license": "MIT",
"files": [
"dist/",
"dynamicImporter.d.ts",
"index.d.ts"
],
"types": "./index.d.ts",
"typings": "./index.d.ts",
"scripts": {
"build": "rimraf dist/* && tsc -P src/"
},
"devDependencies": {
"@types/node": "^10.12.3",
"@types/tapable": "^1.0.4",
"@types/webpack": "^4.4.18",
"@wynd/tslint-config-wynd": "^1.1.5",
"jest": "^23.6.0",
"prettier": "^1.15.1",
"rimraf": "^2.6.2",
"ts-jest": "^23.10.4",
"ts-node": "^7.0.1",
"tsconfig-paths": "^3.6.0",
"tslint": "^5.11.0",
"typescript": "^3.1.6",
"webpack": "^4.25.1",
"webpack-cli": "^3.1.2"
},
"peerDependencies": {
"webpack": "4.x"
},
"keywords": [
"webpack",
"plugin",
"vendor",
"vendors",
"import",
"dynamic-import",
"dynamic-vendor-webpack-plugin"
],
"engines": {
"node": ">=10"
}
}