-
Notifications
You must be signed in to change notification settings - Fork 25
/
package.json
40 lines (40 loc) · 1.07 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
{
"name": "git-cache-http-server",
"version": "0.0.2",
"description": "A caching Git HTTP server",
"bin": {
"git-cache-http-server": "./bin/git-cache-http-server.js"
},
"main": "./bin/git-cache-http-server.js",
"directories": {
"doc": "doc",
"src": "src"
},
"dependencies": {
"docopt": "^0.6.2",
"event-debug": "^2.1.0",
"http-proxy-agent": "^4.0.1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/jonasmalacofilho/git-cache-http-server.git"
},
"author": "Jonas Malaco Filho <[email protected]> (https://jonasmalaco.com)",
"license": "BSD-2-Clause",
"bugs": {
"url": "https://github.com/jonasmalacofilho/git-cache-http-server/issues"
},
"homepage": "https://github.com/jonasmalacofilho/git-cache-http-server#readme",
"devDependencies": {
"haxe": "^5.0.0"
},
"haxeDependencies": {
"haxe": "4.0.5",
"haxelib": "4.0.2"
},
"scripts": {
"installHaxelibs": "haxelib --always install all",
"build": "haxe build.hxml",
"prepare": "npm run installHaxelibs && npm run build"
}
}