-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
29 lines (29 loc) · 1014 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
25
26
27
28
29
{
"name": "handleman.github.source",
"version": "1.0.0",
"description": "personal blog",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"dev": "bundle exec jekyll serve",
"build": "bundle exec jekyll build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/handleman/handleman.github.source.git"
},
"author": "pavel.handleman@gmail,com",
"license": "ISC",
"bugs": {
"url": "https://github.com/handleman/handleman.github.source/issues"
},
"homepage": "https://github.com/handleman/handleman.github.source#readme",
"devDependencies": {
"husky": "^4.2.1"
},
"husky": {
"hooks": {
"pre-push": "rm -Rf _site && git clone [email protected]:handleman/handleman.github.io.git _site && bundle exec jekyll build && cd _site && git add . && git pull origin master && git commit -am \"update\" && git push origin"
}
}
}