-
Notifications
You must be signed in to change notification settings - Fork 107
/
package.json
85 lines (85 loc) · 2.62 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
73
74
75
76
77
78
79
80
81
82
83
84
85
{
"name": "webpack-bundle-tracker",
"version": "3.1.1",
"description": "Spits out some stats about webpack compilation process to a file",
"keywords": [
"bundle",
"files",
"plugin",
"stats",
"webpack"
],
"homepage": "https://github.com/django-webpack/webpack-bundle-tracker",
"bugs": "https://github.com/django-webpack/webpack-bundle-tracker/issues",
"repository": {
"type": "git",
"url": "git+https://github.com/django-webpack/webpack-bundle-tracker.git"
},
"license": "MIT",
"author": "Owais Lone",
"main": "lib/index.js",
"files": [
"lib/",
"typings.d.ts"
],
"types": "typings.d.ts",
"scripts": {
"pretty": "prettier --loglevel warn --write lib/*.js tests/*.js",
"pretty-lint": "prettier --check lib/*.js tests/*.js",
"pretest": "npm run pretty-lint",
"test": "NODE_OPTIONS=--openssl-legacy-provider jest --runInBand --env node",
"test-debug": "NODE_OPTIONS=--openssl-legacy-provider node --inspect-brk=0.0.0.0 node_modules/jest/bin/jest --runInBand --env node",
"posttest": "tsc",
"test-watch": "jest --runInBand --env node --watchAll",
"ci": "NODE_OPTIONS=--openssl-legacy-provider npm run pretest && jest --runInBand --coverage --env node && npm run posttest"
},
"jest": {
"setupFilesAfterEnv": [
"jest-extended"
]
},
"dependencies": {
"lodash.assign": "^4.2.0",
"lodash.defaults": "^4.2.0",
"lodash.foreach": "^4.5.0",
"lodash.frompairs": "^4.0.1",
"lodash.get": "^4.4.2",
"lodash.topairs": "^4.3.0"
},
"devDependencies": {
"@types/babel__traverse": "7.0.6",
"@types/lodash": "4.14.173",
"@types/lodash.assign": "^4.2.7",
"@types/lodash.defaults": "^4.2.7",
"@types/lodash.foreach": "^4.5.7",
"@types/lodash.frompairs": "^4.0.7",
"@types/lodash.get": "^4.4.7",
"@types/lodash.topairs": "^4.3.7",
"@types/node": "^13.13.52",
"@types/webpack": "^4.41.33",
"@typescript-eslint/eslint-plugin": "^2.34.0",
"@typescript-eslint/parser": "^2.34.0",
"commitizen": "^4.3.0",
"compression-webpack-plugin": "^6.1.1",
"css-loader": "^5.2.7",
"cz-conventional-changelog": "3.3.0",
"eslint": "^6.8.0",
"file-loader": "^5.1.0",
"jest": "^29.7.0",
"jest-extended": "^0.11.5",
"mini-css-extract-plugin": "^1.6.2",
"prettier": "^1.19.1",
"standard-version": "^9.5.0",
"style-loader": "^1.3.0",
"tslint": "^6.1.0",
"typescript": "^5.3.2",
"webpack": "^4.47.0",
"webpack-cli": "^4.10.0",
"webpack5": "npm:webpack@^5.89.0"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
}
}