-
Notifications
You must be signed in to change notification settings - Fork 45
/
Copy pathpackage.json
55 lines (55 loc) · 1.29 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
55
{
"name": "webpack-bundle-size-analyzer",
"version": "3.1.0",
"description": "A utility to find how your dependencies are contributing to the size of your Webpack bundles",
"main": "build/src/index.js",
"scripts": {
"coverage": "jest --coverage --no-cache",
"test": "make test",
"version": "make clean && make"
},
"bin": {
"webpack-bundle-size-analyzer": "./webpack-bundle-size-analyzer"
},
"keywords": [
"webpack"
],
"author": "Robert Knight <[email protected]>",
"license": "ISC",
"dependencies": {
"commander": "^2.19.0",
"filesize": "^3.6.1",
"humanize": "0.0.9"
},
"files": [
"build/src",
"webpack-bundle-size-analyzer"
],
"homepage": "http://github.com/robertknight/webpack-bundle-size-analyzer",
"repository": {
"type": "git",
"url": "http://github.com/robertknight/webpack-bundle-size-analyzer.git"
},
"devDependencies": {
"@types/jest": "^24.0.18",
"@types/node": "^12.7.5",
"jest": "^24.9.0",
"ts-jest": "^24.1.0",
"typescript": "^3.6.3"
},
"jest": {
"coverageReporters": [
"text-summary",
"html",
"lcovonly"
],
"moduleFileExtensions": [
"js",
"ts"
],
"transform": {
".(ts|tsx)": "ts-jest"
},
"testRegex": ".*_test.ts$"
}
}