forked from CoinIndexAgency/node-zstd
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
55 lines (55 loc) · 1.16 KB
/
package.json
File metadata and controls
55 lines (55 loc) · 1.16 KB
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
{
"name": "node-zstd",
"version": "1.4.0",
"description": "Zstd wrapper for Nodejs",
"main": "index.js",
"scripts": {
"test": "mocha -t 5000",
"build:dev": "node-gyp -j 16 build --debug",
"build": "node-gyp -j 16 build",
"rebuild:dev": "node-gyp -j 16 rebuild --debug",
"rebuild": "node-gyp -j 16 rebuild",
"clean": "node-gyp clean"
},
"files": [
"README.md",
"LICENSE",
"package.json",
"index.js",
"src/",
"build/",
"deps/"
],
"repository": {
"type": "git",
"url": "git+https://github.com/hanxue/node-zstd.git"
},
"keywords": [
"zstd",
"compression",
"decompression"
],
"author": "zwb-ict",
"contributors": [
{
"name": "Tyler Stiene",
"email": "tystiene@gmail.com",
"url": "https://github.com/Stieneee"
}
],
"license": "MIT",
"bugs": {
"url": "https://github.com/zwb-ict/node-zstd/issues"
},
"homepage": "https://github.com/zwb-ict/node-zstd#readme",
"dependencies": {
"bindings": "^1.2.1",
"nan": "^2.4.0",
"segfault-handler": "^1.0.1"
},
"devDependencies": {
"chai": "^4.1.2",
"mocha": "^5.2.0",
"nyc": "^13.0.1"
}
}