-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
executable file
·44 lines (44 loc) · 917 Bytes
/
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
{
"name": "rpc",
"version": "0.0.1",
"description": "An RPC library.",
"main": "index.js",
"author": "Diel Caroes",
"private": true,
"license": "BSD",
"dependencies": {
"express": "3.4.8",
"socket.io": "",
"socket.io-client": ""
},
"devDependencies": {
"expect.js": "0.3.1",
"mocha": "2.1.0",
"browserify": "8.1.3"
},
"scripts": {
"test": "mocha",
"build-js": "browserify lib/rpc-client.js -o client/bundle.js -d",
"watch-js": "watchify lib/rpc-client.js -o client/bundle.js -dv"
},
"repository": {
"type": "git",
"url": "https://github.com/dielc/rpc"
},
"bugs": {
"url": "https://github.com/dielc/rpc/issues"
},
"homepage": "https://github.com/dielc/rpc",
"directories": {
"example": "example",
"test": "test"
},
"keywords": [
"rpc",
"rmi",
"websocket",
"error",
"exception",
"socket.io"
]
}