forked from piotrwitek/react-redux-typescript-guide
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
20 lines (20 loc) · 754 Bytes
/
package.json
File metadata and controls
20 lines (20 loc) · 754 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
{
"devDependencies": {
"@types/node": "8.5.1",
"all-contributors-cli": "5.4.0",
"husky": "1.3.1"
},
"scripts": {
"ci-check": "npm run readme:generate",
"readme:generate": "node generate-readme",
"contributors:check": "all-contributors check",
"contributors:add": "all-contributors add",
"contributors:generate": "all-contributors generate",
"is-clean": "if output=$(git status --porcelain) && [ -z \"$output\" ]; then echo 'Success!'; else (echo '>>> Please check CONTRIBUTING.md to learn how to properly amend README.md <<<' && false); fi"
},
"husky": {
"hooks": {
"pre-push": "npm run readme:generate && npm run is-clean"
}
}
}