-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
63 lines (63 loc) · 1.35 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
{
"name": "superbuffer",
"version": "1.1.1",
"author": "Daniel Zhang",
"description": "A simple way to serialize JavaScript objects into ArrayBuffers for high compression on the wire.",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/DanielHZhang/superbuffer"
},
"bugs": {
"url": "https://github.com/DanielHZhang/superbuffer/issues"
},
"main": "lib/index.js",
"types": "lib/index.d.ts",
"files": [
"lib/**/*"
],
"engines": {
"node": ">=4.0.0"
},
"scripts": {
"build": "rm -rf lib && tsc --project tsconfig.prod.json",
"profile": "node --prof test/_flamegraph.js",
"test": "jest --collectCoverage",
"test:one": "jest -t",
"test:watch": "jest --watch"
},
"devDependencies": {
"@supersede/eslint-config": "^1.3.0",
"@supersede/prettier-config": "^1.0.1",
"@types/jest": "^29.5.2",
"eslint": "^8.43.0",
"jest": "^29.5.0",
"prettier": "^2.8.8",
"semver": "^7.5.2",
"ts-jest": "^29.1.0",
"typescript": "^5.1.3"
},
"keywords": [
"array",
"arraybuffer",
"binary",
"buffer",
"compress",
"compression",
"data",
"dataview",
"interface",
"json",
"model",
"object",
"serialize",
"serialization",
"schema",
"struct",
"type",
"types",
"typed",
"typedarray",
"uint"
]
}