-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
37 lines (37 loc) · 1.26 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
{
"name": "grido",
"version": "2.0.1",
"homepage": "https://github.com/vilaboim/grido",
"author": "Lucas Vilaboim <[email protected]> (http://vilaboim.com)",
"description": "Grido is a grid developed between Star Wars Rebels and A New Hope (Han shot first!)",
"main": "grido.min.css",
"repository": {
"type": "git",
"url": "https://github.com/vilaboim/grido.git"
},
"license": "MIT",
"keywords": [
"css",
"flexbox",
"grid",
"stylus"
],
"bugs": {
"url": "https://github.com/vilaboim/grido/issues"
},
"devDependencies": {
"chalk": "^4.1.0",
"husky": "^5.1.3",
"stylus": "^0.54.8"
},
"scripts": {
"build": "stylus -c ./grido.styl -o ./grido.min.css",
"build:dev": "stylus ./grido.styl -o ./grido.css",
"watch": "stylus -w grido.styl ./grido.css",
"commitmsg": "node scripts/verifyCommitMsg.js",
"release:tags": "git push && git push --tags",
"release:patch": "npm version patch -m \"feat(version): release version %s\" && npm run release:tags",
"release:minor": "npm version minor -m \"feat(version): release version %s\" && npm run release:tags",
"release:major": "npm version major -m \"feat(version): release version %s\" && npm run release:tags"
}
}