-
Notifications
You must be signed in to change notification settings - Fork 21
/
package.json
87 lines (87 loc) · 2.42 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
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
{
"name": "brotli-wasm",
"version": "3.0.1",
"description": "A reliable compressor and decompressor for Brotli, supporting node & browsers via wasm",
"types": "./index.d.ts",
"main": "./index.node.js",
"browser": "./index.browser.js",
"exports": {
".": {
"types": "./index.d.ts",
"import": "./index.web.js",
"browser": "./index.browser.js",
"require": "./index.node.js",
"default": "./index.web.js"
}
},
"sideEffects": false,
"files": [
"pkg.node",
"pkg.bundler",
"pkg.web",
"index.node.js",
"index.browser.js",
"index.web.js",
"index.d.ts"
],
"scripts": {
"build": "node ./build.js",
"pretest": "npm run build",
"test": "npm run test:node && npm run test:esm && npm run test:webpack",
"test:node": "ts-mocha -p test/tsconfig.json 'test/**/*.spec.ts'",
"test:webpack": "karma start ./karma-webpack.conf.js",
"test:esm": "karma start ./karma-esm.conf.js",
"test:webpack:debug": "npm run test:webpack -- --single-run=false --browsers Chrome",
"test:esm:debug": "npm run test:esm -- --single-run=false --browsers Chrome"
},
"repository": {
"type": "git",
"url": "git+ssh://[email protected]/httptoolkit/brotli-wasm.git"
},
"keywords": [
"brotli",
"wasm",
"compression",
"decompression"
],
"author": "Tim Perry <[email protected]>",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/httptoolkit/brotli-wasm/issues"
},
"homepage": "https://github.com/httptoolkit/brotli-wasm#readme",
"engines": {
"node": ">=v18.0.0"
},
"devDependencies": {
"@peculiar/webcrypto": "^1.4.0",
"@types/atob": "^2.1.2",
"@types/btoa": "^1.2.3",
"@types/chai": "^4.2.18",
"@types/mocha": "^8.2.2",
"@types/node": "^20.12.7",
"@types/text-encoding": "0.0.36",
"atob": "^2.1.2",
"btoa": "^1.2.1",
"buffer": "^6.0.3",
"chai": "^4.3.4",
"karma": "^6.3.2",
"karma-chai": "^0.1.0",
"karma-chrome-launcher": "^3.1.0",
"karma-mocha": "^2.0.1",
"karma-sourcemap-loader": "^0.3.8",
"karma-spec-reporter": "0.0.32",
"karma-typescript": "^5.5.1",
"karma-vite": "^1.0.1",
"karma-webpack": "^5.0.0",
"mocha": "^8.4.0",
"shelljs": "^0.8.4",
"text-encoding": "^0.7.0",
"ts-loader": "^9.2.1",
"ts-mocha": "^10.0.0",
"ts-node": "^9.1.1",
"typescript": "^4.2.4",
"wasm-pack": "^0.10.3",
"webpack": "^5.37.1"
}
}