-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathpackage.json
54 lines (54 loc) · 1.15 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
{
"name": "eslint-plugin-web",
"version": "0.2.0",
"author": "唯然<[email protected]",
"description": "Additional ESLint's rules for web.",
"main": "./lib/index.js",
"scripts": {
"test": "mocha \"tests/**/*.js\"",
"lint": "eslint ."
},
"gitHooks": {
"pre-commit": "lint-staged"
},
"lint-staged": {
"*.js": [
"eslint --fix",
"git add"
],
"*.md": "markdownlint"
},
"files": [
"LICENSE",
"readme.md",
"lib"
],
"repository": "https://github.com/aladdin-add/eslint-plugin/tree/master/packages/web",
"homepage": "https://github.com/aladdin-add/eslint-plugin/tree/master/packages/web",
"bugs": "https://github.com/aladdin-add/eslint-plugin/issues/",
"dependencies": {
"espree": "^7.3.1",
"esutils": "^2.0.3",
"escape-string-regexp": "^4.0.0"
},
"peerDependencies": {
"eslint": ">4"
},
"devDependencies": {
"lint-staged": "^10.5.3",
"markdownlint": "^0.22.0",
"mocha": "^8.2.1",
"yorkie": "^2.0.0"
},
"keywords": [
"ast",
"lint",
"javascript",
"ecmascript",
"espree"
],
"license": "MIT",
"engines": {
"node": ">=18"
}
}