forked from SethRobertson/GitFixUm
-
Notifications
You must be signed in to change notification settings - Fork 17
/
package.json
29 lines (29 loc) · 1.1 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
{
"name": "git-fix-um",
"version": "2.0.0",
"description": "On undoing, fixing, or removing commits or mistakes in git ",
"private": true,
"scripts": {
"start": "tiddlywiki wiki --server",
"build": "tiddlywiki wiki-dist --rendertiddler '$:/core/save/all' index.html text/plain",
"copy-output": "cp ./wiki-dist/output/index.html ./index.html",
"git-co": "git checkout gh-pages && git reset --hard origin/gh-pages",
"git-stage": "npm run build && npm run git-co && npm run copy-output",
"git-commit": "git add -A . && git commit -a -m 'gh-pages update'",
"git-push": "git push origin gh-pages --force && git checkout master",
"deploy": "npm run git-stage && npm run git-commit && npm run git-push"
},
"repository": {
"type": "git",
"url": "git+https://github.com/sukima/GitFixUm.git"
},
"author": "Devin Weaver <[email protected]> (http://tritarget.org/)",
"license": "CC BY-SA 3.0",
"bugs": {
"url": "https://github.com/sukima/GitFixUm/issues"
},
"homepage": "http://sukima.github.io/GitFixUm/",
"devDependencies": {
"tiddlywiki": "^5.1.8"
}
}