forked from django-webpack/webpack-bundle-tracker
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
72 lines (72 loc) · 2.16 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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
{
"name": "webpack-bundle-tracker",
"version": "1.0.0-alpha.1",
"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": "typings.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",
"test-debug": "node --inspect-brk=0.0.0.0 node_modules/jest/bin/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": {
"@types/lodash.foreach": "^4.4.6",
"@types/lodash.get": "^4.4.6",
"lodash.assign": "^4.2.0",
"lodash.defaults": "^4.2.0",
"lodash.foreach": "^4.2.0",
"lodash.get": "^4.4.2",
"strip-ansi": "^6.0.0"
},
"devDependencies": {
"@types/lodash.assign": "^4.2.6",
"@types/lodash.defaults": "^4.2.6",
"@types/mkdirp": "^1.0.0",
"@types/node": "^13.9.1",
"@types/webpack": "^4.41.7",
"@typescript-eslint/eslint-plugin": "^2.23.0",
"@typescript-eslint/parser": "^2.23.0",
"codecov": "^3.6.5",
"commitizen": "^4.0.3",
"css-loader": "^3.4.2",
"cz-conventional-changelog": "3.1.0",
"eslint": "^6.8.0",
"file-loader": "^5.1.0",
"jest": "^25.1.0",
"jest-extended": "^0.11.5",
"mini-css-extract-plugin": "^0.9.0",
"prettier": "^1.19.1",
"standard-version": "^7.1.0",
"style-loader": "^1.1.3",
"tslint": "^6.1.0",
"typescript": "^3.8.3",
"webpack": "^4.42.0"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
}
}