forked from bigeasy/udt
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
46 lines (46 loc) · 1.15 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
{ "name": "es6udt"
, "description": "Full ES6 implementation of the UDP-based Data Transfer Protocol named UDT"
, "author": "Ryan O'Connor"
, "version": "1.0.0"
, "keywords": [ "udp", "udt", "p2p", "networking", "sockets", "firewall", "async", "asynchronous" ]
, "licenses": [
{ "type": "MIT"
, "url": "http://github.com/rocifier/udt/raw/master/LICENSE"
}]
, "homepage": "https://github.com/rocifier/udt"
, "repository":
{ "type": "git"
, "url": "http://github.com/rocifier/udt.git"
}
, "scripts" : {
"debug-mocha": "iron-node node_modules/mocha/bin/_mocha"
}
, "dependencies":
{ "packet": "git://github.com/bigeasy/packet.git#e04287354e20dceb1dd0436eb858732363936367"
}
, "devDependencies":
{ "mocha": "*" , "chai": "*"
}
, "eslintConfig":
{
"parserOptions": {
"ecmaVersion": 6,
"sourceType": "module",
"ecmaFeatures": {
"blockBindings": true,
"impliedStrict": true
}
},
"rules": {
"semi": 2,
"no-console": 0
},
"env": {
"browser": true,
"node": true,
"es6": true,
"mocha": true
},
"extends": "eslint:recommended"
}
}