-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
45 lines (45 loc) · 887 Bytes
/
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
{
"name": "array-buffer-serializer",
"version": "0.4.2",
"description": "Serializes data to transfer fewer bytes over the network",
"main": "index.js",
"types": "index.d.ts",
"engines": {
"node": ">=16.0.0"
},
"scripts": {
"test": "jest --coverage",
"bench": "node benchmarks/run.js"
},
"keywords": [
"serializer",
"compressor",
"optimization",
"bytes",
"network",
"array-buffer",
"bandwidth"
],
"files": [
"package.json",
"index.js",
"index.d.ts",
"lib/",
"README.md",
"LICENSE"
],
"author": "usernmae0101",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/usernmae0101/array-buffer-serializer"
},
"devDependencies": {
"benchmark": "^2.1.4",
"jest": "^27.0.6",
"microtime": "^3.0.0"
},
"dependencies": {
"ieee754": "^1.2.1"
}
}