-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
66 lines (66 loc) · 1.53 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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
{
"name": "bolty",
"version": "2.0.0",
"description": "Binary object serialization. Inspired by Procotol Buffers.",
"main": "./lib/bolty.js",
"directories": {
"test": "test"
},
"scripts": {
"test": "grunt test"
},
"repository": {
"type": "git",
"url": "https://github.com/alanhoff/node-bolty"
},
"keywords": [
"binary",
"object",
"encode",
"decode",
"procol buffers",
"protobuf"
],
"testling": {
"harness": "mocha-bdd",
"files": "test/test-*.js",
"browsers": [
"ie/6..latest",
"chrome/4..latest",
"firefox/3..latest",
"safari/4..latest",
"opera/10.0..latest",
"iphone/6..latest",
"ipad/6..latest",
"android-browser/4..latest"
]
},
"author": "Alan Hoffmeister <[email protected]>",
"license": "ISC",
"bugs": {
"url": "https://github.com/alanhoff/node-bolty/issues"
},
"homepage": "https://github.com/alanhoff/node-bolty",
"dependencies": {
"varint": "^3.0.1"
},
"devDependencies": {
"browserify": "^4.2.3",
"chai": "^1.9.2",
"coveralls": "^2.11.2",
"grunt": "^0.4.5",
"grunt-banner": "^0.2.3",
"grunt-browserify": "^3.1.0",
"grunt-contrib-uglify": "^0.6.0",
"grunt-jsdoc-to-markdown": "^0.4.2",
"grunt-run": "^0.2.4",
"istanbul": "^0.3.2",
"jshint": "^2.5.6",
"karma": "^0.12.24",
"karma-browserify": "^0.2.1",
"karma-mocha": "^0.1.9",
"karma-mocha-reporter": "^0.3.1",
"karma-phantomjs-launcher": "^0.1.4",
"mocha": "^1.21.4"
}
}