-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
67 lines (67 loc) · 1.51 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
62
63
64
65
66
67
{
"name": "node-liblzma",
"version": "0.0.0",
"description": "NodeJS wrapper for liblzma",
"main": "./lib/lzma.js",
"scripts": {
"install": "node-gyp-build",
"prepare": "npx ynpx coffeescript --bare --compile --output lib/ src/",
"prebuildify": "npx prebuildify --napi --strip -t $(node -v)",
"prebuildify:win": "for /f \"usebackq tokens=*\" %v in (`node -v`) do npx prebuildify -t %v --napi --strip",
"test": "mocha test/*.coffee"
},
"dependencies": {
"node-addon-api": "4.2.0",
"node-gyp-build": "4.3.0"
},
"devDependencies": {
"coffeescript": "2.6.1",
"expect.js": "0.3.1",
"mocha": "9.2.1",
"tsd": "0.19.1"
},
"types": "index.d.ts",
"engines": {
"node": ">12.0.0"
},
"repository": {
"type": "git",
"url": "https://github.com/oorabona/node-liblzma"
},
"keywords": [
"module",
"lzma",
"lzma2",
"xz",
"unxz",
"compress",
"uncompress",
"decompress",
"filters",
"binding",
"native"
],
"gypfile": true,
"author": "Olivier ORABONA",
"license": "LGPL-3.0",
"bugs": {
"url": "https://github.com/oorabona/node-liblzma/issues"
},
"homepage": "https://github.com/oorabona/node-liblzma",
"binary": {
"module_name": "liblzma"
},
"publishConfig": {
"registry": "https://registry.npmjs.org/"
},
"mocha": {
"throw-deprecation": true,
"require": [
"coffeescript/register"
],
"inline-diffs": true,
"timeout": 5000,
"reporter": "spec",
"recursive": true
}
}