-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
51 lines (51 loc) · 1.08 KB
/
package.json
File metadata and controls
51 lines (51 loc) · 1.08 KB
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
{
"name": "obj2buf",
"version": "1.4.0",
"description": "A type-safe encoder/decoder for structured binary data with snake_case API design",
"main": "index.js",
"files": [
"index.js",
"lib/",
"README.md",
"LICENSE"
],
"keywords": [
"serialization",
"binary",
"buffer",
"encoding",
"decoding",
"objects",
"structured-data",
"type-safe",
"schema",
"protocol",
"network",
"performance",
"snake-case",
"maptype",
"binary-format"
],
"scripts": {
"test": "mocha test/**/*.test.js",
"test:watch": "mocha test/**/*.test.js --watch",
"test:coverage": "nyc mocha test/**/*.test.js"
},
"engines": {
"node": ">=12.0.0"
},
"author": "Nova-Dynamics",
"license": "ISC",
"repository": {
"type": "git",
"url": "git+https://github.com/Nova-Dynamics/obj2buf-node.git"
},
"bugs": {
"url": "https://github.com/Nova-Dynamics/obj2buf-node/issues"
},
"homepage": "https://github.com/Nova-Dynamics/obj2buf-node#readme",
"devDependencies": {
"chai": "^6.0.1",
"mocha": "^11.7.2"
}
}