-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
40 lines (40 loc) · 1.12 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": "xdelta-async-nodejs-addon",
"version": "1.1.0",
"main": "dist/main.js",
"types": "dist/main.d.ts",
"license": "Apache-2.0",
"author": "Tsviatko Yovtchev <[email protected]> (https://codemerx.com)",
"description": "Asynchronous native addon for Node.js that allows generating and applying diffs/patches in VCDIFF format using the xdelta algorithm",
"repository": {
"type": "git",
"url": "https://github.com/ably/xdelta-async-nodejs-addon.git"
},
"scripts": {
"ts": "tsc",
"preinstall": "./xdelta-3.1.0/xdelta3/buildXDelta.sh",
"install": "node-gyp rebuild",
"test": "mocha --require ts-node/register --watch-extensions ts,tsx \"test/tests/**/*.{ts,tsx}\""
},
"files": [
"dist",
"src",
"xdelta-3.1.0/xdelta3",
"binding.gyp"
],
"gypfile": true,
"dependencies": {
"bindings": "^1.5.0",
"node-addon-api": "^1.7.1"
},
"devDependencies": {
"@types/mocha": "^5.2.7",
"@types/node": "^12.0.2",
"grunt": "^1.0.4",
"grunt-bump": "^0.8.0",
"grunt-exec": "^3.0.0",
"mocha": "^6.1.4",
"ts-node": "^8.3.0",
"typescript": "^3.4.5"
}
}