-
Notifications
You must be signed in to change notification settings - Fork 19
/
Copy pathpackage.json
48 lines (48 loc) · 1.2 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
{
"name": "protodef",
"version": "1.7.2",
"description": "A simple yet powerful way to define binary protocols",
"main": "index.js",
"author": "roblabla <[email protected]>",
"sideEffects": false,
"scripts": {
"prepare": "require-self",
"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.get": "^4.4.2",
"lodash.reduce": "^4.6.0",
"protodef-validator": "^1.2.2",
"readable-stream": "^3.0.3"
},
"engines": {
"node": ">=12"
},
"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": "^5.2.0",
"require-self": "^0.1.0",
"standard": "^12.0.1"
},
"files": [
"src/",
"ProtoDef/schemas/",
"*.js"
]
}