forked from wmsmacdonald/vcdiff-decoder
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
61 lines (61 loc) · 1.56 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
52
53
54
55
56
57
58
59
60
61
{
"name": "@ably/vcdiff-decoder",
"version": "1.0.6",
"description": "Pure JavaScript Vcdiff decoder that works with binary deltas from Google's open-vcdiff",
"license": "Apache-2.0",
"homepage": "https://ably.io/",
"main": "build/cjs/vcdiff-decoder.js",
"module": "lib/vcdiff_decoder.js",
"typings": "typings.d.ts",
"scripts": {
"grunt": "grunt",
"test": "grunt test:all"
},
"repository": "ably-forks/vcdiff-decoder.git",
"keywords": [
"delta",
"decoding",
"decoder",
"compression",
"Vcdiff",
"diff"
],
"author": "Ably Real-time Ltd <support@ably.io>",
"contributors": [
"William MacDonald",
"Tsviatko Yovtchev <tsviatko@codemerx.com> (https://codemerx.com)"
],
"bugs": {
"url": "https://github.com/ably-forks/vcdiff-decoder/issues"
},
"files": [
"lib",
"dist",
"build",
"typings.d.ts"
],
"devDependencies": {
"@babel/core": "^7.23.3",
"@babel/preset-env": "^7.23.3",
"babel-loader": "^8.1.0",
"chai": "^3.5.0",
"core-js": "^3.6.5",
"grunt": "^1.1.0",
"grunt-bump": "^0.8.0",
"grunt-cli": "^1.3.2",
"grunt-karma": "^3.0.2",
"grunt-mocha-test": "^0.13.3",
"grunt-webpack": "^3.1.3",
"karma": "^4.4.1",
"karma-browserstack-launcher": "^1.5.1",
"karma-firefox-launcher": "^1.3.0",
"karma-mocha": "^1.3.0",
"karma-mocha-reporter": "^2.2.5",
"karma-sourcemap-loader": "^0.3.7",
"karma-webpack": "^4.0.2",
"mocha": "^7.1.2",
"vcdiff": "baranov1ch/node-vcdiff",
"webpack": "^4.42.1",
"webpack-cli": "^3.3.11"
}
}