-
Notifications
You must be signed in to change notification settings - Fork 269
/
package.json
40 lines (40 loc) · 838 Bytes
/
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": "javascript-airbnb",
"version": "1.0.0",
"scripts": {
"lint": "markdownlint --config linters/.markdownlint.json README.md */README.md",
"speller": "yaspeller --config linters/.yaspeller.json ."
},
"repository": {
"type": "git",
"url": "https://github.com/leonidlebedev/javascript-airbnb.git"
},
"keywords": [
"style guide",
"lint",
"airbnb",
"es6",
"es2015",
"es2016",
"es2017",
"es2018",
"react",
"jsx"
],
"author": "Leonid Lebedev",
"license": "MIT",
"bugs": {
"url": "https://github.com/leonidlebedev/javascript-airbnb/issues"
},
"homepage": "https://github.com/leonidlebedev/javascript-airbnb",
"devDependencies": {
"husky": "7.0.4",
"markdownlint-cli": "0.30.0",
"yaspeller": "8.0.0"
},
"husky": {
"hooks": {
"pre-commit": "npm run lint && npm run speller"
}
}
}