forked from fstnetwork/cppzst
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
47 lines (47 loc) · 1.05 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
{
"name": "@fstnetwork/cppzst",
"version": "2.0.8",
"description": "Zstd wrapper for Nodejs 14 and above (CommonJS)",
"main": "./index.js",
"scripts": {
"test": "mocha -t 5000",
"build:dev": "node-gyp -j 4 build --debug",
"build": "node-gyp -j 4 build",
"rebuild:dev": "node-gyp -j 4 rebuild --debug",
"rebuild": "node-gyp -j 4 rebuild",
"clean": "node-gyp clean"
},
"repository": {
"type": "git",
"url": "git+https://github.com/fstnetwork/cppzst.git"
},
"keywords": [
"zstd",
"compression",
"decompression"
],
"author": "zwb-ict",
"contributors": [
{
"name": "gcxfd",
"email": "i@rmw.link",
"url": "https://github.com/gcxfd"
},
{
"name": "noelb24",
"email": "noel@fstk.io",
"url": "https://github.com/kumanoko24"
}
],
"license": "AGPL-3.0-or-later",
"dependencies": {
"bindings": "^1.5.0",
"nan": "^2.14.2",
"nyc": "^15.1.0",
"segfault-handler": "^1.3.0"
},
"devDependencies": {
"chai": "^4.2.0",
"mocha": "^8.2.0"
}
}