-
Notifications
You must be signed in to change notification settings - Fork 7
/
package.json
45 lines (45 loc) · 953 Bytes
/
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
{
"name": "pbnj",
"version": "1.0.0",
"keywords": [
"protocol",
"buffer",
"proto",
"protobuf",
"parser",
"codegen"
],
"description": "JavaScript protocol buffer schema parser and template based code generator",
"homepage": "https://github.com/Medium/pbnj",
"repository": {
"type": "git",
"url": "git://github.com/Medium/pbnj.git"
},
"license": "Apache-2.0",
"author": {
"name": "Dan Pupius",
"email": "[email protected]",
"url": "http://pupius.co.uk"
},
"maintainers": [
{
"name": "Dan Pupius",
"email": "[email protected]",
"web": "http://pupius.co.uk/"
}
],
"main": "lib/pbnj.js",
"scripts": {
"test": "nodeunit ./tests/ && tests/protoc_test.sh && eslint lib"
},
"dependencies": {
"mkdirp": "0.3.5",
"kew": "0.7.0",
"soynode": "^1.1.0"
},
"devDependencies": {
"eslint": "1.5.1",
"nodeunit": "0.8.2",
"nodeunitq": "0.1.1"
}
}