-
Notifications
You must be signed in to change notification settings - Fork 1.7k
/
package.json
38 lines (38 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
{
"name": "tips",
"version": "1.0.0",
"description": "collection of git tips",
"main": "index.js",
"private": "true",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"precommit": "npm run generate && git add README.md",
"update-readme": "echo 'Updating the readme…'; doxie --render < ./tips.json --inject into README.md && echo '…done!'",
"update-toc": "echo 'Updating the table of contents…'; doxie --render .doxie.render.toc.js < ./tips.json --append '\n' --inject into README.md as toc && echo '…done!'",
"generate": "npm run update-readme; npm run update-toc"
},
"repository": {
"type": "git",
"url": "git+https://github.com/npm-tips/tips.git"
},
"keywords": [
"npm",
"tips"
],
"contributors": [
"hemanth"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/git-tips/tips/issues"
},
"homepage": "https://github.com/git-tips/tips#readme",
"devDependencies": {
"doxie": "^0.2.2",
"doxie.append": "^0.1.0",
"doxie.inject": "^0.1.1",
"doxie.output": "^0.3.0",
"doxie.render": "^0.3.0",
"husky": "^5.0.9"
}
}