This repository has been archived by the owner on Jun 6, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 24
/
package.json
68 lines (68 loc) · 1.62 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
68
{
"name": "iltorb",
"version": "2.4.5",
"description": "Brotli compression/decompression with native bindings",
"homepage": "https://github.com/nstepien/iltorb",
"bugs": "https://github.com/nstepien/iltorb/issues",
"repository": {
"type": "git",
"url": "git://github.com/nstepien/iltorb.git"
},
"main": "index.js",
"keywords": [
"brotli",
"compression",
"decompression"
],
"contributors": [
{
"name": "Nicolas Stepien",
"email": "[email protected]"
},
{
"name": "Hung Tran",
"email": "[email protected]"
}
],
"files": [
"brotli/c/common",
"brotli/c/dec",
"brotli/c/enc",
"brotli/c/include",
"scripts",
"src",
"binding.gyp",
"index.js"
],
"dependencies": {
"detect-libc": "^1.0.3",
"nan": "^2.14.0",
"npmlog": "^4.1.2",
"prebuild-install": "^5.3.3",
"which-pm-runs": "^1.0.0"
},
"devDependencies": {
"ava": "^2.4.0",
"cross-env": "^7.0.0",
"cross-spawn": "^7.0.1",
"node-abi": "^2.13.0",
"node-gyp": "^7.0.0",
"npm-run-path-compat": "^2.0.3",
"prebuild": "^10.0.0"
},
"scripts": {
"install": "node ./scripts/install.js || node-gyp rebuild",
"rebuild": "prebuild --compile",
"prebuild": "detect-libc prebuild",
"prebuild-ci": "node ./scripts/build.js",
"prebuild-upload": "cross-env PUBLISH_BINARY=1 npm run prebuild-ci",
"test": "ava"
},
"binary": {
"module_name": "iltorb",
"module_path": "./build/bindings",
"remote_path": "v{version}",
"host": "https://github.com/nstepien/iltorb/releases/download/"
},
"license": "MIT"
}