-
Notifications
You must be signed in to change notification settings - Fork 35
/
package.json
49 lines (49 loc) · 1.26 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
{
"name": "gitkit",
"main": "./lib/index.js",
"description": "Pure javascript implementation of Git",
"version": "0.1.0",
"license": "Apache-2.0",
"author": "Samy Pesse <samypesse@gmail.com>",
"repository": {
"type": "git",
"url": "https://github.com/SamyPesse/gitkit.js.git"
},
"dependencies": {
"axios": "^0.9.1",
"bash-color": "0.0.3",
"binary": "^0.3.0",
"bind-all": "^1.0.0",
"buffer-to-uint8array": "^1.1.0",
"commander": "2.9.0",
"concentrate": "^0.2.3",
"dissolve": "deoxxa/dissolve#4fd1556d0199a27dd0a6f9f22cb6648194301454",
"http-browserify": "^1.7.0",
"ignore": "^3.1.1",
"immutable": "^3.7.6",
"is": "^3.1.0",
"memory-fs": "^0.3.0",
"mkdir": "0.0.2",
"pad": "^1.0.0",
"pako": "^1.0.1",
"q": "^1.4.1",
"stream-combiner2": "^1.1.1",
"through2": "^2.0.1",
"through2-filter": "^2.0.0",
"typedarray-to-buffer": "^3.1.2",
"varint": "^4.0.0"
},
"devDependencies": {
"eslint": "^2.13.0",
"expect": "^1.19.0",
"into-stream": "^2.0.0",
"mocha": "2.3.4"
},
"scripts": {
"test": "./node_modules/.bin/mocha ./testing/setup.js ./lib/**/*/__tests__/*.js --bail --reporter=list",
"lint": "eslint ."
},
"bin": {
"gitkit": "./bin/gitkit.js"
}
}