forked from techpines/express.io
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
47 lines (47 loc) · 1.54 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
{
"name": "express.io",
"version": "1.1.13",
"description": "Realtime-web framework for nodejs",
"keywords": ["realtime", "web", "framework", "express.io", "express", "socket.io", "badass"],
"homepage": "http://express-io.org",
"author": "Brad Carleton <[email protected]>",
"repository": "git://github.com/techpines/express.io",
"contributors": [{
"name": "Brad Carleton",
"email": "[email protected]",
"url": "http://techpines.com"
},{
"name": "James Wyse",
"email": "[email protected]",
"url": "http://www.jameswyse.net"
},{
"name": "Edward Smith",
"email": "[email protected]",
"url": "https://github.com/edwardmsmith"
},{
"name": "Krzysztof",
"email": "[email protected]",
"url": "https://github.com/pharcosyle"
}],
"dependencies": {
"express": "~3.4.0",
"socket.io": "~0.9.16",
"async": "0.1.22",
"underscore": "1.4.3",
"coffee-script": "1.4.0"
},
"devDependencies": {
"request": "*",
"mocha": "*",
"chai": "*",
"socket.io-client": "*",
"jade": "*"
},
"main": "switch.js",
"scripts": {
"test": "./node_modules/mocha/bin/mocha test/test.coffee",
"compile": "./node_modules/coffee-script/bin/coffee -o compiled/ -c lib/",
"prepublish": "echo $(pwd) > /tmp/.pwd; ./node_modules/coffee-script/bin/coffee -o compiled/ -c lib/;",
"postpublish": "rm -rf $(cat /tmp/.pwd)/compiled"
}
}