-
Notifications
You must be signed in to change notification settings - Fork 14
/
package.json
38 lines (38 loc) · 1.02 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
{
"name": "rudp",
"version": "1.0.0-alpha4",
"description": "Reliable UDP implementation for Node.js",
"homepage": "https://github.com/shovon/node-rudp",
"author": {
"name": "Salehen Shovon Rahman",
"email": "sal@linux.com",
"url": "http://shovon.github.io"
},
"scripts": {
"gendoc": "./node_modules/yuidocjs/lib/cli.js .",
"viewdoc": "./node_modules/yuidocjs/lib/cli.js . --server 4000",
"test": "./node_modules/mocha/bin/mocha",
"unit-test": "./node_modules/mocha/bin/mocha ./test/unit",
"integration-test": "./node_modules/mocha/bin/mocha ./test/integration"
},
"main": "./lib/index.js",
"repository": {
"type": "git",
"url": "git://github.com/shovon/node-rudp.git"
},
"devDependencies": {
"yuidocjs": "^0.3.50",
"mocha": "^1.18.2",
"expect.js": "^0.3.1",
"sinon": "^1.9.1"
},
"dependencies": {
"buffer-equal": "0.0.1",
"buffertools": "^2.1.2"
},
"browser": {
"buffertools": false,
"./bufferEqual": "buffer-equal"
},
"license": "MIT"
}