-
Notifications
You must be signed in to change notification settings - Fork 36
/
Copy pathpackage.json
executable file
·50 lines (50 loc) · 1.17 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
47
48
49
50
{
"name": "ArcusNode",
"version": "0.0.6",
"author": "arcusdev <[email protected]>",
"description": "A RTMFP Rendevouz Server For Peer Assisted Networking With Adobe Flash",
"main": "service",
"keywords":[
"rtmfp",
"flash",
"p2p",
"networking",
"rendezvouz",
"rtmp",
"RPC"
],
"directories": {
"lib": "./lib",
"src": "./src"
},
"maintainers": [{
"name":"arcusdev",
"email":"[email protected]",
"web":"http://github.com/OpenRTMFP"
},{
"name":"kommander",
"web":"http://github.com/kommander"
}],
"bugs" : {
"mail" : "[email protected]",
"web" : "https://github.com/OpenRTMFP/ArcusNode/issues"
},
"engines" : { "node" : "~0.10.0", "npm" : "1" },
"licenses": [{
"type": "GPL",
"url": "http://www.gnu.org/licenses/"
}],
"repositories": [{
"type": "git"
, "url" : "http://github.com/OpenRTMFP/ArcusNode.git"
}],
"dependencies": {
"node-gyp": "0.9"
},
"scripts" : {
"preinstall" : "",
"install" : "node-gyp configure build",
"test" : "node test.js",
"start" : "node service.js"
}
}