-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
33 lines (33 loc) · 1.05 KB
/
package.json
File metadata and controls
33 lines (33 loc) · 1.05 KB
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
{
"name" : "starter.node"
, "description" : "Starter application for node.js and backbone.js"
, "author" : "Johnny Hall <johnny@recipher.co.uk>"
, "version" : "0.0.1"
, "private" : true
, "main" : "./bootstrap.js"
, "repository" : {
"type" : "git"
, "url" : "git://github.com/perceptal/starter.node.git"
}
, "dependencies" : {
"coffee-script" : ">= 1.2.0"
, "express" : ">= 2.5.8"
, "mongoose" : ">= 2.5.9"
, "connect-mongodb" : ">= 1.1.3"
, "stylus" : ">= 0.24.0"
, "jade" : ">= 0.0.1"
, "nib" : ">= 0.3.2"
, "node-uuid" : ">= 1.3.3"
, "crypto" : ">= 0.0.3"
, "knox" : ">= 0.0.9"
, "imagemagick" : ">= 0.1.2"
}
, "devDependencies": {
"mocha" : "*"
, "should" : "*"
, "sinon" : "*"
}
, "scripts": {
"test" : "NODE_ENV=test mocha test/*/*.coffee -R list"
}
}