-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathpackage.json
60 lines (60 loc) · 1.6 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": "@modern-js/build-tool-inspector",
"version": "1.0.0",
"description": "Inspector for webpack",
"main": "index.js",
"scripts": {
"build": "pnpm --filter webpack-devtool-ui --filter @modern-js/inspector-webpack-plugin build",
"changeset": "changeset",
"version": "changeset version",
"test": "pnpm run test --filter '*webpack-plugin*'",
"publish": "pnpm publish --filter '*plugin*' --no-git-checks --access=public"
},
"repository": {
"type": "git",
"url": "git+https://github.com/modern-js-dev/build-tool-inspector.git"
},
"eslintIgnore": [
"node_modules/",
"dist/",
"client/"
],
"eslintConfig": {
"extends": [
"@modern-js"
]
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{ts,tsx}": [
"node --max_old_space_size=8192 ./node_modules/eslint/bin/eslint.js --fix --color --cache --quiet"
],
"*.{js,jsx,mjs,mjsx,cjs,cjsx}": [
"node --max_old_space_size=8192 ./node_modules/eslint/bin/eslint.js --fix --color --cache --quiet"
]
},
"keywords": [
"webpack",
"build",
"inspector"
],
"author": "yangxingyuan",
"license": "MIT",
"bugs": {
"url": "https://github.com/modern-js-dev/build-tool-inspector/issues"
},
"homepage": "https://github.com/modern-js-dev/build-tool-inspector#readme",
"devDependencies": {
"@changesets/cli": "^2.24.2",
"@commitlint/cli": "^17.0.3",
"@commitlint/config-conventional": "^17.0.3",
"@modern-js/eslint-config": "^1.2.6",
"eslint": "^8.18.0",
"husky": "^8.0.1",
"lint-staged": "^13.0.3"
}
}