-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathpackage.json
54 lines (54 loc) · 1.4 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
{
"name": "dll-link-webpack-plugin",
"version": "3.2.1",
"description": "a webpack plugin aims to replace DllReferencePlugin",
"main": "dist/index.js",
"typings": "index.d.ts",
"author": "clinyong <clinyong@gmail.com>",
"license": "MIT",
"scripts": {
"prepare": "tsc",
"test": "jest"
},
"keywords": [
"webpack",
"webpack plugin",
"webpack dll",
"DllPlugin",
"DllReferencePlugin"
],
"devDependencies": {
"@types/fs-extra": "^5.0.2",
"@types/jest": "^22.2.3",
"@types/node": "^7.0.12",
"@types/webpack": "^2.2.14",
"husky": "^1.0.0-rc.2",
"jest": "^22.4.3",
"prettier": "^1.12.1",
"pretty-quick": "^1.4.1",
"ts-jest": "^22.4.6",
"tslint": "^5.1.0",
"typescript": "^2.4.2",
"webpack": "^4.6.0",
"webpack-cli": "^2.1.2"
},
"dependencies": {
"@fmtk/package-list": "^2.1.0",
"chalk": "^1.1.3",
"fs-extra": "^5.0.0",
"invariant": "^2.2.2",
"lodash": "^4.17.4",
"md5": "^2.2.1",
"strip-bom": "^3.0.0"
},
"repository": {
"type": "git",
"url": "https://github.com/clinyong/dll-link-webpack-plugin"
},
"files": ["index.d.ts", "dist/"],
"husky": {
"hooks": {
"pre-commit": "pretty-quick --staged"
}
}
}