forked from timkindberg/webpack-bundle-tracker
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
53 lines (53 loc) · 1.59 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
{
"name": "webpack-bundle-tracker",
"version": "0.4.3",
"description": "Spits out some stats about webpack compilation process to a file",
"keywords": [
"bundle",
"files",
"plugin",
"stats",
"webpack"
],
"homepage": "https://github.com/owais/webpack-bundle-tracker",
"bugs": "https://github.com/owais/webpack-bundle-tracker/issues",
"repository": "https://github.com/owais/webpack-bundle-tracker.git",
"license": "MIT",
"author": "Owais Lone",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"scripts": {
"pretty": "prettier --loglevel warn --write lib/*.js tests/*.js",
"pretty-lint": "prettier --check lib/*.js tests/*.js",
"pretest": "yarn pretty-lint",
"test": "jest --runInBand --env node",
"posttest": "tsc",
"test-watch": "jest --runInBand --env node --watchAll",
"travis": "yarn pretest && jest --runInBand --coverage --env node && codecov && yarn posttest"
},
"jest": {
"setupFilesAfterEnv": ["jest-extended"]
},
"dependencies": {
"deep-extend": "^0.6.0",
"mkdirp": "^0.5.1",
"strip-ansi": "^5.2.0"
},
"devDependencies": {
"@types/deep-extend": "^0.4.31",
"@types/mkdirp": "^0.5.2",
"@types/node": "^12.6.9",
"@types/webpack": "^4.32.1",
"@typescript-eslint/eslint-plugin": "^1.13.0",
"@typescript-eslint/parser": "^1.13.0",
"codecov": "^3.5.0",
"commitizen": "^4.0.3",
"cz-conventional-changelog": "^3.0.2",
"eslint": "^6.1.0",
"jest": "^24.8.0",
"jest-extended": "^0.11.2",
"prettier": "^1.18.2",
"standard-version": "^7.0.0",
"typescript": "^3.5.3"
}
}