-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
31 lines (31 loc) · 733 Bytes
/
Copy pathpackage.json
File metadata and controls
31 lines (31 loc) · 733 Bytes
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
{
"name": "cloudtypes",
"description": "A JavaScript library implementation of the CloudTypes eventual consistency model",
"author": "Tim Coppieters <coppieters.tim@gmail.com>",
"version": "0.0.13",
"main": "index.js",
"repository": {
"type": "git",
"url": "https://github.com/ticup/CloudTypes-paper.git"
},
"engines": {
"node": "0.12.x",
"npm": "1.2.x"
},
"dependencies": {
"shortid": "^2.2.4",
"socket.io": "^1.4.5",
"socket.io-client": "^1.4.5"
},
"devDependencies": {
"should": "3.x.x",
"mocha": "*"
},
"optionalDependencies": {
"node-static": "*"
},
"scripts": {
"test": "node_modules/.bin/mocha",
"make-test": "node_modules/.bin/browserify"
}
}