forked from D-dc/asyncCall.js
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
executable file
·46 lines (45 loc) · 1.05 KB
/
package.json
File metadata and controls
executable file
·46 lines (45 loc) · 1.05 KB
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": "rpc-and-store",
"version": "0.0.1",
"description": "An RPC library with shared data.",
"main": "index.js",
"author": "Laure Philips",
"private": true,
"license": "BSD-2-Clause",
"dependencies": {
"express": "3.4.8",
"socket.io": "",
"socket.io-client": "",
"lineage": ""
},
"devDependencies": {
"expect.js": "0.3.1",
"mocha": "2.1.0",
"browserify": "8.1.3"
},
"scripts": {
"test": "mocha",
"build-js": "browserify lib/rpc-client.js lib/data-client.js lib/store.js lib/clock.js lib/ObservableObject.js lib/ReplicatedObject.js -o client/bundle.js -d",
"watch-js": "watchify lib/rpc-client.js -o client/bundle.js -dv"
},
"repository": {
"type": "git",
"url": "git+https://github.com/dielc/rpc.git"
},
"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"
]
}