forked from pierrec/node-lz4
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
58 lines (58 loc) · 1.28 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
{
"author": {
"name": "Pierre Curto"
},
"name": "@staratlas/node-lz4",
"description": "LZ4 streaming compression and decompression",
"keywords": [
"lz4",
"compression",
"decompression",
"stream"
],
"version": "1.0.0",
"homepage": "http://github.com/staratlasmeta/node-lz4",
"repository": {
"type": "git",
"url": "git://github.com/staratlasmeta/node-lz4.git"
},
"main": "./lib/lz4.js",
"browser": "./build/lz4.js",
"bugs": {
"url": "http://github.com/staratlasmeta/node-lz4/issues"
},
"gypfile": true,
"licenses": [
{
"type": "MIT",
"url": "http://github.com/staratlasmeta/node-lz4/raw/master/LICENSE"
}
],
"engines": {
"node": ">= 16.20"
},
"dependencies": {
"buffer": "5.2.1",
"cuint": "0.2.2",
"node-addon-api": "3.2.1",
"xxhashjs": "0.2.2"
},
"devDependencies": {
"benchmark": "1.0.0",
"browserify": "16.2.3",
"jasmine-core": "2.2.0",
"karma": "0.12.31",
"karma-chrome-launcher": "0.1.7",
"karma-cli": "0.0.4",
"karma-firefox-launcher": "0.1.4",
"karma-jasmine": "0.3.5",
"karma-mocha": "0.1.10",
"minify": "4.1.1",
"mocha": "2.2.4"
},
"scripts": {
"test": "mocha",
"install": "node-gyp rebuild",
"prepublish": "./build.sh"
}
}