forked from geta6/linda-socket.io
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
55 lines (55 loc) · 1.2 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
51
52
53
54
55
{
"name": "linda",
"version": "1.2.2",
"private": false,
"description": "Linda implementation on Socket.IO",
"main": "lib/linda.js",
"scripts": {
"start": "coffee ./bin/linda-server.coffee",
"test": "grunt test"
},
"bin": {
"linda-server": "./bin/linda-server.coffee"
},
"keywords": [
"linda",
"socket.io"
],
"author": "Sho Hashimoto <[email protected]>",
"license": "MIT",
"devDependencies": {
"coffee-errors": "*",
"mocha": "*",
"grunt": "*",
"grunt-simple-mocha": "*",
"grunt-notify": "*",
"grunt-contrib-coffee": "*",
"grunt-coffeelint": "*",
"grunt-contrib-watch": "*",
"grunt-jsonlint": "*",
"async": "*"
},
"dependencies": {
"body-parser": "*",
"coffee-script": "*",
"debug": "*",
"eventemitter2": "*",
"express": "^4.8.5",
"jade": "^1.5.0",
"optparse": "*",
"request": "*",
"socket.io": "*",
"socket.io-client": "*"
},
"directories": {
"test": "tests"
},
"repository": {
"type": "git",
"url": "git://github.com/node-linda/linda.git"
},
"bugs": {
"url": "https://github.com/node-linda/linda/issues"
},
"homepage": "https://github.com/node-linda/linda"
}