forked from birchroad/node-jspack
-
Notifications
You must be signed in to change notification settings - Fork 12
/
package.json
36 lines (36 loc) · 970 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
{
"name": "bufferpack",
"description": "Module to pack/unpack primitives and c strings into/out of a Node.js buffer",
"version": "0.0.5",
"keywords": ["jspack", "buffer", "octet", "primitive", "string"],
"homepage": "https://github.com/ryanrolds/bufferpack",
"repository": {
"type": "git",
"url": "git://github.com/ryanrolds/bufferpack.git"
},
"main": "./bufferpack.js",
"author": "Ryan Olds <[email protected]>",
"maintainers": [
{
"name": "Peter Griess",
"web": "https://github.com/pgriess"
},
{
"name": "Peter Magnusson",
"email": "[email protected]",
"web": "http://github.com/birchroad/node-jspack"
},
{
"name": "Ryan Olds",
"email": "[email protected]",
"web": "https://github.com/ryanrolds"
}
],
"devDependencies": {
"mocha": "1.x",
"should": "3.x"
},
"scripts": {
"test": "./node_modules/.bin/mocha test/*.test.js --reporter spec"
}
}