forked from vvscode/otus--javascript-basic
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
32 lines (32 loc) · 724 Bytes
/
package.json
File metadata and controls
32 lines (32 loc) · 724 Bytes
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
{
"name": "otus--javascript-basic",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"dev": "reveal-md",
"lint:prettier": "prettier --check .",
"lint:spell": "yaspeller .",
"lint": "yarn lint:prettier && yarn lint:spell"
},
"keywords": [],
"author": "",
"license": "ISC",
"devDependencies": {
"husky": ">=4",
"lint-staged": ">=10",
"prettier": "^2.1.2",
"reveal-md": "^4.1.7",
"yaspeller": "^7.0.0"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{js,json,html,css,md,yml,yaml}": "prettier --write",
"*.md": "yaspeller"
}
}