-
Notifications
You must be signed in to change notification settings - Fork 514
/
package.json
39 lines (39 loc) · 1.29 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
38
39
{
"name": "git-it",
"version": "1.6.9",
"description": "Terminal app for learning Git and GitHub",
"main": "index.js",
"bin": "./git-it.js",
"scripts": {
"build": "node guide/buildpages.js && node guide/buildpages.js zhtw",
"build-english": "node guide/buildpages.js",
"build-zhtw": "node guide/buildpages.js zhtw",
"copy-guide": "cp -r ./guide ./.guide",
"git-co": "git checkout gh-pages && git reset --hard origin/gh-pages",
"paste-guide": "cp -r ./.guide/* .. && rm -rf ./.guide",
"git-stage": "npm run copy-guide && npm run git-co && npm run paste-guide",
"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": "https://github.com/jlord/git-it.git"
},
"author": "Jessica Lord",
"license": "BSD-2-Clause",
"bugs": {
"url": "https://github.com/jlord/git-it/issues"
},
"dependencies": {
"concat-stream": "~1.2.1",
"ecstatic": "^0.5.4",
"github-oauth": "0.0.4",
"glob": "^3.2.11",
"handlebars": "^2.0.0-alpha.4",
"marked": "^0.3.2",
"request": "~2.74.0",
"workshopper-jlord": "^0.0.6",
"cheerio": "~0.17.0"
}
}