forked from addaleax/lzma-native
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
58 lines (58 loc) · 1.45 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
{
"name": "lzma-native",
"version": "2.0.0",
"engines": {
"node": ">=4"
},
"author": {
"name": "Anna Henningsen",
"email": "[email protected]"
},
"description": "Provides bindings to the native liblzma library (.xz file format, among others)",
"main": "index",
"bin": {
"lzmajs": "./bin/lzmajs"
},
"dependencies": {
"nan": "^2.3.2",
"node-pre-gyp": "^0.6.21",
"readable-stream": "^2.0.5"
},
"bundledDependencies": ["node-pre-gyp"],
"keywords": [
"lzma",
"compression",
"crc32",
"xz",
"liblzma"
],
"homepage": "https://github.com/addaleax/lzma-native",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/addaleax/lzma-native.git"
},
"scripts": {
"install": "node-pre-gyp install --fallback-to-build",
"test": "mocha --expose-gc -s 1000 -t 5000",
"prepare": "cd deps && 7z x -y xz-5.2.3-windows.7z bin_i686/liblzma.dll bin_x86-64/liblzma.dll include doc/liblzma.def",
"jshint": "jshint ."
},
"gypfile": true,
"bugs": {
"url": "https://github.com/addaleax/lzma-native/issues"
},
"devDependencies": {
"bl": "^1.1.2",
"coveralls": "^2.11.6",
"istanbul": "^0.4.2",
"jshint": "^2.9.1",
"mocha": "^3.0.2"
},
"binary": {
"module_name": "lzma_native",
"module_path": "./binding-v{version}-{node_abi}-{platform}-{arch}/",
"host": "https://node-pre-gyp.entless.org",
"remote_path": "./lzma-native/"
}
}