forked from hallettj/bitable
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
45 lines (45 loc) · 1.05 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
{
"name": "peer",
"version": "0.0.1",
"description": "In-browser distributed hashtable (DHT)",
"homepage": "https://github.com/hallettj/peer",
"author": {
"name": "Jesse Hallett",
"email": "[email protected]",
"url": "http://sitr.us/"
},
"repository": {
"type": "git",
"url": "git://github.com/hallettj/peer.git"
},
"bugs": "https://github.com/hallettj/peer/issues",
"licenses": [
{
"type": "Apache-2.0",
"url": "https://github.com/hallettj/peer/blob/master/LICENSE-Apache-2.0"
}
],
"engines": {
"node": ">= 0.10.0"
},
"scripts": {
"test": "grunt test"
},
"devDependencies": {
"grunt": "~0.4.2",
"grunt-contrib-concat": "~0.3.0",
"grunt-contrib-watch": "~0.5.3",
"grunt-contrib-uglify": "~0.4.0",
"grunt-contrib-jshint": "~0.8.0",
"grunt-contrib-connect": "~0.7.1",
"grunt-contrib-qunit": "~0.4.0"
},
"dependencies": {
"lodash": "~2.4.1",
"peerjs": "~0.3.6",
"when": "~2.8.0",
"baconjs": "~0.7.6",
"bencode-js": "0.0.7",
"mori": "~0.2.5"
}
}