generated from PrismarineJS/prismarine-template
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
44 lines (44 loc) · 1 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
{
"name": "protodef-cpp",
"version": "1.2.0",
"description": "C++ compiler for ProtoDef schemas to encode and decode packets",
"main": "src/index.js",
"type": "commonjs",
"scripts": {
"test": "mocha --reporter spec --exit",
"pretest": "npm run lint",
"lint": "standard",
"fix": "standard --fix",
"mocha": "mocha --bail --exit"
},
"bin": {
"protodef-cpp": "src/cli.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/extremeheat/protodef-cpp.git"
},
"keywords": [
"protodef",
"deserialize",
"serialize",
"binary",
"compiler",
"c++"
],
"author": "Romain Beaumont",
"license": "MIT",
"bugs": {
"url": "https://github.com/extremeheat/protodef-cpp/issues"
},
"homepage": "https://github.com/extremeheat/protodef-cpp#readme",
"devDependencies": {
"mocha": "^10.0.0",
"protodef-cpp": "file:.",
"standard": "^17.0.0"
},
"dependencies": {
"basic-args": "^1.3.0",
"protodef-yaml": "^1.4.0"
}
}