forked from bjankord/Style-Guide-Boilerplate
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
25 lines (25 loc) · 1.02 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
{
"name": "@bjankord/style-guide-boilerplate",
"version": "3.3.2",
"description": "A starting point for crafting living style guides.",
"scripts": {
"test": "echo \"Error: no test specified\"",
"deploy": "gh-pages -d gh-pages",
"release:major": "npm test && npm version major -m \"Released version %s\" && npm publish --access=public && git push --follow-tags",
"release:minor": "npm test && npm version minor -m \"Released version %s\" && npm publish --access=public && git push --follow-tags",
"release:patch": "npm test && npm version patch -m \"Released version %s\" && npm publish --access=public && git push --follow-tags"
},
"repository": {
"type": "git",
"url": "git+https://github.com/bjankord/Style-Guide-Boilerplate.git"
},
"author": "Brett Jankord",
"license": "MIT",
"bugs": {
"url": "https://github.com/bjankord/Style-Guide-Boilerplate/issues"
},
"homepage": "https://github.com/bjankord/Style-Guide-Boilerplate#readme",
"devDependencies": {
"gh-pages": "^2.0.1"
}
}