forked from mlaursen/vim-react-snippets
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
32 lines (32 loc) · 800 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
{
"name": "vim-react-snippets",
"version": "0.0.1",
"description": "Reusable Javascript and Typescript vim snippets for UltiSnips and developing React apps.",
"repository": "git@github.com:mlaursen/vim-react-snippets.git",
"author": "Mikkel Laursen <mlaursen03@gmail.com>",
"license": "Apache-2.0",
"private": true,
"scripts": {
"format": "prettier --write README.md",
"toc": "markdown-toc -i README.md"
},
"devDependencies": {
"husky": "^4.2.5",
"lint-staged": "^10.2.13",
"markdown-toc": "^1.2.0",
"npm-run-all": "^4.1.5",
"prettier": "^2.1.0"
},
"husky": {
"hooks": {
"pre-commit": "npm-run-all toc format"
}
},
"lint-staged": {
"README.md": [
"markdown-toc -i",
"prettier --write",
"git add"
]
}
}