-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
40 lines (40 loc) · 973 Bytes
/
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
{
"author": "Jerry Sievert <code@legitimatesounding.com> (http://legitimatesounding.com/blog/)",
"name": "bricks",
"description": "Bricks Application Server",
"version": "1.1.4",
"homepage": "http://bricksjs.com/",
"preferGlobal": "true",
"repository": {
"type": "git",
"url": "http://github.com/JerrySievert/bricks.git"
},
"keywords": ["http", "webserver", "appserver", "framework"],
"license" : "MIT/X11",
"main": "./lib/appserver.js",
"engines": {
"node": ">0.4.3"
},
"dependencies": {
"cookies": "~0.1.6",
"mime": ">=1.2.2",
"cromag": ">0.1.0",
"optimist": ">=0.2",
"node-uuid": ">1.1.0",
"eventemitter2": ">=0.4.0"
},
"devDependencies": {
"vows": ">=0.5.0"
},
"directories": {
"test": "./test",
"lib": "./lib",
"bin": "./bin"
},
"scripts": {
"test": "vows --spec"
},
"bin": {
"bricks": "./bin/bricks"
}
}