-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
37 lines (36 loc) · 954 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
{
"name" : "NodeBootstrap"
, "version" : "0.4.2"
, "description" : "Node/Express.js Template with Twitter Bootstrap2 and other goodies"
, "author" : "Irakli Nadareishvili, John Nelson"
, "license" : {
"type" : "MIT"
, "url" : "https://github.com/inadarei/nodebootstrap/blob/master/LICENSE"
}
, "main" : "./server.js"
, "repository" : {
"type" : "git",
"url" : "https://github.com/inadarei/nodebootstrap"
}
, "engines": {
"node": ">=0.8.8"
}
, "dependencies": {
"yaml" : "*"
, "express" : "3.x"
, "config" : "*"
, "hbs" : "1.x"
, "less" : "1.x"
, "less-middleware" : "*"
, "underscore" : "1.x"
, "metalogger" : "*"
}
, "devDependencies" : {
"assert" : "*"
, "should" : "*"
, "mocha" : "*"
}
, "scripts": {
"test" : "mocha"
}
}