generated from hchiam/convenience
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
24 lines (24 loc) · 902 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
{
"name": "html-template-generator",
"main": "index.js",
"repository": "https://github.com/hchiam/html-template-generator",
"author": "hchiam <[email protected]>",
"license": "MIT",
"scripts": {
"dev": "yarn start",
"start": "yarn codepen; parcel index.html",
"build": "yarn codepen; parcel build index.html",
"deploy": "yarn build && surge dist https://html-template-generator.surge.sh",
"reminder": "echo 'Remember to deploy to:'; echo '\n \\033[1;34m https://html-template-generator.surge.sh \\033[0m \n and update: \n \n \\033[1;34m https://codepen.io/hchiam/pen/jOBOaqm \\033[0m \n'",
"codepen": "echo '\n\nauto-generating CodePen files\n\n'; bash concat_for_codepen.sh"
},
"devDependencies": {
"husky": "4.3.8",
"parcel-bundler": "1.12.3"
},
"husky": {
"hooks": {
"pre-commit": "yarn codepen; yarn reminder"
}
}
}