-
-
Notifications
You must be signed in to change notification settings - Fork 98
/
package.json
40 lines (40 loc) · 1.12 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
{
"name": "web-basics",
"version": "1.0.0",
"description": "大厂前端需要掌握的JS基础能力,大厂场景题、大厂面试真题欢迎提issue和PR来丰富场景题",
"scripts": {
"lint": "eslint --ext .js src --fix",
"prepare": "husky install",
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/OBKoro1/web-basics.git"
},
"husky": {
"hooks": {
"commit-msg": "commitlint -e $GIT_PARAMS"
}
},
"publisher": "OBKoro1",
"author": {
"name": "OBKoro1",
"email": "[email protected]",
"url": "http://obkoro1.com/web_accumulate/"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/OBKoro1/web-basics/issues",
"email": "[email protected]"
},
"homepage": "https://github.com/OBKoro1/web-basics#readme",
"devDependencies": {
"@commitlint/cli": "^14.1.0",
"@commitlint/config-conventional": "^14.1.0",
"eslint": "^8.1.0",
"eslint-config-airbnb-base": "^14.2.1",
"eslint-plugin-import": "^2.25.2",
"husky": "^7.0.4",
"lint-staged": "^11.2.6"
}
}