-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
71 lines (71 loc) · 2.04 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
{
"name": "brick.json",
"version": "0.0.2",
"description": "a json compressor",
"main": "dist/index.cjs.js",
"module": "dist/index.esm.js",
"types": "dist/index.d.ts",
"scripts": {
"dev": "node scripts/dev.js",
"build": "node scripts/build.js",
"test": "jest --coverage",
"perf": "node benchmark/index.js",
"coveralls": "coveralls < coverage/lcov.info"
},
"files": [
"dist",
"gzip"
],
"repository": {
"type": "git",
"url": "git+https://github.com/oct16/brick.git"
},
"keywords": [
"json",
"compressor",
"compression",
"compress",
"cjson",
"hpack"
],
"author": "oct16",
"license": "GPL-3.0",
"bugs": {
"url": "https://github.com/oct16/brick/issues"
},
"homepage": "https://github.com/oct16/brick#readme",
"devDependencies": {
"@rollup/plugin-commonjs": "^16.0.0",
"@rollup/plugin-node-resolve": "^10.0.0",
"@types/benchmark": "^2.1.0",
"@types/jest": "^26.0.15",
"@types/node": "^14.14.7",
"@types/node-fetch": "^2.5.7",
"@types/pako": "^1.0.1",
"@typescript-eslint/eslint-plugin": "^4.7.0",
"@typescript-eslint/parser": "^4.7.0",
"benchmark": "^2.1.4",
"brotli": "^1.3.2",
"chalk": "^4.1.0",
"cli-table2": "^0.2.0",
"coveralls": "^3.1.0",
"deep-equal": "^2.0.4",
"eslint": "^7.13.0",
"eslint-config-prettier": "^6.15.0",
"eslint-plugin-prettier": "^3.1.4",
"execa": "^4.1.0",
"jest": "^26.6.3",
"jsonh": "^0.0.6",
"node-fetch": "^2.6.1",
"pako": "^2.0.1",
"prettier": "^2.1.2",
"rollup-plugin-cleanup": "^3.2.1",
"rollup-plugin-delete": "^2.0.0",
"rollup-plugin-dts": "^1.4.14",
"rollup-plugin-terser": "^7.0.2",
"rollup-plugin-typescript2": "^0.29.0",
"ts-jest": "^26.4.4",
"ts-node": "^9.0.0",
"typescript": "^4.0.5"
}
}