-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpackage.json
executable file
·61 lines (61 loc) · 1.33 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
{
"name": "simple-zstd",
"version": "1.4.2",
"description": "Node.js interface to the system installed zstd.",
"main": "index.js",
"scripts": {
"test": "mocha"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Stieneee/simple-zstd.git"
},
"keywords": [
"zstd",
"zstandard",
"compress",
"compression",
"decompress",
"decompression",
"stream",
"pipe",
"pkg",
"gzip-maybe",
"maybe",
"decompress-maybe"
],
"author": {
"name": "Tyler Stiene",
"email": "[email protected]",
"url": "https://tylerstiene.ca"
},
"contributors": [
{
"name": "Joshua Barkovic",
"email": "[email protected]",
"url": "https://github.com/jbarkovic"
}
],
"license": "MIT",
"bugs": {
"url": "https://github.com/Stieneee/simple-zstd/issues"
},
"homepage": "https://github.com/Stieneee/simple-zstd#readme",
"devDependencies": {
"brake": "^1.0.1",
"chai": "^4.3.6",
"chai-as-promised": "^7.1.1",
"chai-fs": "^2.0.0",
"eslint": "^8.25.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-plugin-import": "^2.26.0",
"mocha": "^10.1.0",
"release-it": "^15.5.0"
},
"dependencies": {
"is-zst": "^1.0.0",
"peek-stream": "^1.1.3",
"process-streams": "^1.0.1",
"through2": "^4.0.2"
}
}