forked from fuwaneko/node-protobuf
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
26 lines (26 loc) · 684 Bytes
/
package.json
File metadata and controls
26 lines (26 loc) · 684 Bytes
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
{
"name": "node-protobuf",
"version": "1.6.0",
"description": "A Node.js protocol buffer wrapper",
"author": "Dmitry Gorbunov <atskiisotona@gmail.com",
"license": "MIT",
"main": "protobuf.js",
"repository": "https://github.com/fuwaneko/node-protobuf",
"dependencies": {
"bindings": "^1.2.1",
"nan": "^2.13.2"
},
"engines": {
"node": ">=4.0.0"
},
"licence": "MIT",
"devDependencies": {
"grunt": "^1.0.3",
"grunt-release": "^0.14.0",
"mocha": "^5.2.0"
},
"scripts": {
"test": "./node_modules/.bin/mocha ./test/test.js -R spec",
"format": "for source in src/* protobuf.js; do clang-format -style=file -i $source; done"
}
}