-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
103 lines (103 loc) · 3.11 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
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
{
"name": "@jsany/log-filesize-webpack-plugin",
"version": "1.2.13",
"description": "log assets size after webpack build(wirte by typescript)",
"keywords": ["log", "assets", "filesize", "gzip", "webpack", "plugin"],
"homepage": "https://github.com/jsany/log-filesize-webpack-plugin#readme",
"bugs": {
"url": "https://github.com/jsany/log-filesize-webpack-plugin/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/jsany/log-filesize-webpack-plugin.git"
},
"license": "MIT",
"author": "jiangzhiguo2010",
"main": "lib/index.js",
"typings": "lib/index.d.ts",
"files": ["lib"],
"scripts": {
"build": "rimraf lib/* && ttsc",
"coverage": "jest --runInBand --coverage",
"prettier": "prettier -c --write \"**/*.{js,ts,md,json}\"",
"release": "standard-version",
"test": "jest --runInBand",
"watch": "ttsc -w"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged",
"prepare-commit-msg": "devmoji -e --lint",
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
},
"lint-staged": {
"**/*.{js,ts,md,json}": ["prettier --write"],
"package.json": ["sort-package-json"]
},
"dependencies": {
"chalk": "^4.1.0",
"cliui": "^6.0.0",
"mime": "^2.4.6",
"webpack": "^4.43.0",
"webpack-cli": "^3.3.12"
},
"devDependencies": {
"@babel/plugin-proposal-class-properties": "^7.10.4",
"@babel/plugin-proposal-decorators": "^7.10.5",
"@babel/plugin-syntax-dynamic-import": "^7.8.3",
"@babel/plugin-transform-runtime": "^7.10.5",
"@babel/preset-env": "^7.10.4",
"@babel/preset-react": "^7.10.4",
"@babel/preset-typescript": "^7.10.4",
"@commitlint/cli": "^9.1.1",
"@commitlint/config-conventional": "^9.1.1",
"@types/jest": "^26.0.9",
"@types/mime": "^2.0.2",
"@types/node": "^14.0.23",
"@types/react": "^16.9.44",
"@types/react-dom": "^16.9.8",
"@types/rimraf": "^3.0.0",
"@types/webpack": "^4.41.21",
"@typescript-eslint/eslint-plugin": "^3.6.1",
"@typescript-eslint/parser": "^3.6.1",
"autoprefixer": "^9.8.5",
"babel-loader": "^8.1.0",
"clean-webpack-plugin": "^3.0.0",
"cross-env": "^7.0.2",
"css-loader": "^3.6.0",
"devmoji": "^2.1.9",
"eslint": "^7.4.0",
"eslint-config-alloy": "^3.7.3",
"file-loader": "^6.0.0",
"husky": "^4.2.5",
"jest": "^26.1.0",
"less-loader": "^6.2.0",
"lint-staged": "^10.2.11",
"mini-css-extract-plugin": "^0.9.0",
"optimize-css-assets-webpack-plugin": "^5.0.3",
"postcss-loader": "^3.0.0",
"prettier": "^2.0.5",
"react": "^16.13.1",
"react-dom": "^16.13.1",
"rimraf": "^3.0.2",
"sort-package-json": "^1.44.0",
"standard-version": "^8.0.2",
"ts-jest": "^26.1.4",
"ttypescript": "^1.5.10",
"typescript": "^3.9.6",
"typescript-transform-paths": "^1.1.14",
"url-loader": "^4.1.0",
"webpack-manifest-plugin": "^2.2.0"
},
"engines": {
"node": ">=10"
},
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org"
},
"issues": {
"url": "https://github.com/jsany/log-filesize-webpack-plugin/issues"
}
}