-
-
Notifications
You must be signed in to change notification settings - Fork 537
/
Copy pathpackage.json
51 lines (51 loc) · 1.18 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
40
41
42
43
44
45
46
47
48
49
50
51
{
"name": "git-file-history",
"description": "Quickly browse the history of a file from any git repository",
"version": "1.0.1",
"repository": "pomber/git-history",
"keywords": [
"cli",
"git",
"file",
"history",
"log",
"commits",
"change",
"animation",
"gui"
],
"license": "MIT",
"bin": {
"git-file-history": "./cli.js",
"githistory": "./cli.js",
"git-history": "./cli.js"
},
"files": [
"site",
"*.js"
],
"dependencies": {
"execa": "^1.0.0",
"get-port": "^4.1.0",
"koa": "^2.7.0",
"koa-router": "^7.4.0",
"koa-static": "^5.0.0",
"open": "^0.0.5",
"opencollective-postinstall": "^2.0.2",
"serve-handler": "^5.0.8",
"yargs": "^13.2.2"
},
"scripts": {
"build-site": "cd .. && cross-env REACT_APP_GIT_PROVIDER=cli yarn build && rm -fr cli/site/ && cp -r build/ cli/site/",
"build": "yarn build-site",
"ls-package": "npm pack && tar -xvzf *.tgz && rm -rf package *.tgz",
"postinstall": "opencollective-postinstall"
},
"devDependencies": {
"cross-env": "^5.2.0"
},
"collective": {
"type": "opencollective",
"url": "https://opencollective.com/git-history"
}
}