-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
48 lines (48 loc) · 1.19 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
{
"name": "brotli-compress",
"version": "1.3.3",
"main": "index.js",
"module": "index.mjs",
"typings": "dist/index.d.ts",
"description": "WASM based, asynchronous Brotli compression and decompression package that works in browsers and Node.js; CommonJS and ESM",
"keywords": [
"brotli",
"compress",
"decompress",
"wasm",
"webassemly",
"async",
"typescript",
"browser",
"Node.js"
],
"scripts": {
"prebuild": "rm -rf dist",
"build": "ts-node build.ts",
"postbuild": "tsc",
"deploy": "npm publish",
"pretest": "yarn build",
"test": "jest"
},
"repository": {
"type": "git",
"url": "git+https://github.com/kyr0/brotli-compress.git"
},
"author": "Aron Homberg <[email protected]>, Tim Perry <[email protected]>",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/kyr0/brotli-compress/issues"
},
"homepage": "https://github.com/kyr0/brotli-compress#readme",
"dependencies": {
"@types/node": "^17.0.40",
"brotli-wasm": "1.2.0"
},
"devDependencies": {
"@types/jest": "^27.5.1",
"esbuild": "^0.14.3",
"jest": "^27.5.1",
"ts-jest": "^27.1.3",
"typescript": "^4.6.2"
}
}