forked from tower-archive/tower
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
81 lines (80 loc) · 2.36 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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
{
"name": "tower",
"version": "0.3.9-7",
"description": "Full Stack Web Framework for Node.js and the Browser",
"homepage": "http://viatropos.github.com/tower",
"main": "lib/tower.js",
"author": "Lance Pollard <[email protected]>",
"keywords": [
"framework",
"rails",
"node"
],
"maintainers": [{
"name": "Lance Pollard",
"email": "[email protected]",
"web": "http://lancepollard.com"
}],
"contributors": [
],
"licenses": [
{
"type": "MIT",
"url": "http://mths.be/mit"
}
],
"bugs": {
"url": "https://github.com/viatropos/tower/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/viatropos/tower.git"
},
"engines": {
"node": ">= 0.4.0"
},
"directories": {
"lib" : "./lib"
},
"bin": {
"tower": "./bin/tower"
},
"dependencies": {
"underscore": ">= 1.1.6",
"underscore.string": ">= 1.2.0",
"mime": ">= 1.2.4",
"connect": ">= 1.7.1",
"qs": ">= 0.3.1",
"async": ">= 0.1.12",
"lingo": ">= 0.0.4",
"underscore.logger": ">= 0.3.1",
"mint": ">= 0.3.0",
"ejs": ">= 0.6.1",
"pathfinder": ">= 0.1.5",
"commander": ">= 0.4.0",
"express": ">= 2.5.1",
"socket.io": ">= 0.8.7",
"coffee-script": ">= 1.2.0",
"coffeekup": ">= 0.3.1",
"restler": ">= 0.0.1",
"useragent": ">= 1.0.5",
"URIjs": ">= 1.4.2",
"moment": ">= 1.4.0",
"node-uuid": ">= 1.3.0"
},
"devDependencies": {
"coffee-script": ">= 1.2.0",
"stylus": ">= 0.17.0",
"ejs": ">= 0.6.1",
"uglify-js": ">= 1.1.1",
"mocha": ">= 0.8.1",
"chai": ">= 0.3.3",
"sinon": ">= 1.3.1",
"gzip": ">= 0.1.0",
"forever": ">= 0.8.5",
"mongodb": ">= 0.9.9"
},
"scripts": {
"test": "mocha $(find test -name \"*Test.coffee\") -r coffee-script $@"
}
}