-
Notifications
You must be signed in to change notification settings - Fork 13
/
Copy pathpackage.json
40 lines (40 loc) · 982 Bytes
/
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
{
"name": "webpack-common-shake",
"version": "2.0.2",
"description": "CommonJS Tree Shake Plugin for Webpack",
"main": "lib/shake.js",
"scripts": {
"test": "mocha --reporter=spec test/*-test.js && npm run lint",
"lint": "eslint lib/*.js lib/**/*.js test/*js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/indutny/webpack-common-shake.git"
},
"files": [
"lib"
],
"keywords": [
"webpack",
"commonjs",
"tree",
"shake"
],
"author": "Fedor Indutny <[email protected]> (http://darksi.de/)",
"license": "MIT",
"bugs": {
"url": "https://github.com/indutny/webpack-common-shake/issues"
},
"homepage": "https://github.com/indutny/webpack-common-shake#readme",
"dependencies": {
"acorn": "^5.2.1",
"common-shake": "^2.1.0",
"webpack": "^4.16.5",
"webpack-sources": "^1.1.0"
},
"devDependencies": {
"eslint": "^4.11.0",
"memory-fs": "^0.4.1",
"mocha": "^3.5.3"
}
}