-
Notifications
You must be signed in to change notification settings - Fork 24
Expand file tree
/
Copy pathpackage.json
More file actions
41 lines (41 loc) · 1.08 KB
/
package.json
File metadata and controls
41 lines (41 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
{
"name": "protodef",
"version": "1.19.0",
"description": "A simple yet powerful way to define binary protocols",
"main": "index.js",
"types": "index.d.ts",
"author": "roblabla <robinlambertz.dev@gmail.com>",
"scripts": {
"lint": "standard",
"fix": "standard --fix",
"unit-test": "mocha --recursive --reporter spec",
"test": "npm run lint && npm run unit-test",
"benchmark": "mocha benchmark/benchmark_unified.js"
},
"tonicExampleFilename": "example.js",
"license": "MIT",
"dependencies": {
"lodash.reduce": "^4.6.0",
"protodef-validator": "^1.3.0",
"readable-stream": "^4.4.0"
},
"engines": {
"node": ">=14"
},
"bugs": {
"url": "https://github.com/ProtoDef-io/node-protodef/issues"
},
"homepage": "https://github.com/ProtoDef-io/node-protodef",
"repository": {
"type": "git",
"url": "https://github.com/ProtoDef-io/node-protodef.git"
},
"devDependencies": {
"benchmark": "^2.1.4",
"chai": "^4.1.2",
"jsonschema": "^1.2.4",
"mocha": "^10.2.0",
"protodef": "file:.",
"standard": "^17.0.0"
}
}