-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
60 lines (60 loc) · 1.65 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
{
"name": "limit-size-webpack-plugin",
"version": "1.0.5",
"description": "A webpack plugin with `limit-size`",
"main": "dist/index.js",
"engines": {
"node": ">= 10.13.0"
},
"files": [
"dist"
],
"scripts": {
"start": "npm run build -- -w",
"clean": "del-cli dist",
"build": "cross-env NODE_ENV=production babel src -d dist --copy-files",
"commitlint": "commitlint --from=main",
"lint:prettier": "prettier --list-different . --write",
"lint:js": "eslint --cache . --fix",
"lint": "npm-run-all -l -p \"lint:**\"",
"release": "standard-version",
"prepare": "husky install"
},
"repository": {
"type": "git",
"url": "git+https://github.com/joriewong/limit-size-webpack-plugin.git"
},
"keywords": [
"limit-size",
"webpack-plugin"
],
"author": "jared",
"license": "MIT",
"bugs": {
"url": "https://github.com/joriewong/limit-size-webpack-plugin/issues"
},
"homepage": "https://github.com/joriewong/limit-size-webpack-plugin#readme",
"devDependencies": {
"@babel/cli": "^7.13.14",
"@babel/core": "^7.13.15",
"@babel/preset-env": "^7.13.15",
"@commitlint/cli": "^12.1.1",
"@commitlint/config-conventional": "^12.1.1",
"@webpack-contrib/eslint-config-webpack": "^3.0.0",
"cross-env": "^7.0.3",
"del-cli": "^3.0.1",
"eslint": "^7.24.0",
"eslint-config-prettier": "^8.1.0",
"eslint-plugin-import": "^2.22.1",
"husky": "^6.0.0",
"lint-staged": "^10.5.4",
"npm-run-all": "^4.1.5",
"prettier": "^2.2.1",
"standard-version": "^9.2.0"
},
"dependencies": {
"byte-parser": "^1.0.0",
"chalk": "^2.4.2",
"zlib": "^1.0.5"
}
}