-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathpackage.json
More file actions
31 lines (31 loc) · 758 Bytes
/
package.json
File metadata and controls
31 lines (31 loc) · 758 Bytes
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
{
"name": "vcdiff-decoder",
"version": "0.2.1",
"description": "Pure JavaScript vcdiff decoder that works with binary deltas from Google's open-vcdiff",
"main": "lib/vcdiff_decoder.js",
"scripts": {
"test": "mocha"
},
"repository": {
"type": "git",
"url": "git+https://github.com/wmsmacdonald/vcdiff-decoder.git"
},
"keywords": [
"sdch",
"delta",
"cache",
"decoding",
"compression"
],
"author": "William MacDonald",
"license": "MIT",
"bugs": {
"url": "https://github.com/wmsmacdonald/vcdiff-decoder/issues"
},
"devDependencies": {
"chai": "^3.5.0",
"mocha": "^3.0.2",
"vcdiff": "baranov1ch/node-vcdiff"
},
"homepage": "https://github.com/wmsmacdonald/vcdiff-decoder#readme"
}