-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
41 lines (41 loc) · 1.08 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
{
"name": "node-onramp-server",
"version": "0.0.1",
"description": "Relay server build with websocket and nodejs",
"main": "",
"scripts": {
"start": "node ./lib -h 127.0.0.1"
},
"repository": {
"type": "git",
"url": "https://github.com/overelay/node-onramp-server.git"
},
"private": true,
"author": "Eugene Chernyshov <[email protected]>",
"licenses": [
{
"type": "LGPLv3",
"url": "http://opensource.org/licenses/LGPL-3.0"
}
],
"bugs": {
"url": "https://github.com/overelay/node-onramp-server/issues",
"email": "[email protected]"
},
"homepage": "https://github.com/overelay/node-onramp-server",
"dependencies": {
"browser-relay-client": "git://github.com/overelay/browser-relay-client#v0.1.5",
"commander": "^2.5.0",
"node-uuid": "^1.4.2",
"websocket": "^1.0.14"
},
"devDependencies": {
"gulp": "^3.8.10",
"gulp-chug": "^0.3.1",
"gulp-rimraf": "^0.1.1",
"gulp-sourcemaps": "^1.2.8",
"gulp-typescript": "^2.3.0",
"run-sequence": "^1.0.2",
"typescript": "^1.3.0"
}
}