forked from pinceladasdaweb/nodejs-boilerplate
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
70 lines (70 loc) · 1.66 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
{
"name": "express4-boilerplate",
"version": "0.1.4",
"private": true,
"description": "Create apps and static sites with Node.js and Express 4",
"main": "./config/server.js",
"scripts": {
"start": "nodemon ./config/init.js",
"test": "istanbul cover _mocha test/*.js"
},
"repository": {
"type": "git",
"url": "[email protected]:samuelbwr/nodejs-boilerplate.git"
},
"author": {
"name": "Pedro Rogério",
"email": "[email protected]",
"url": "https://github.com/pinceladasdaweb"
},
"contributors": [
{
"name": "Pedro Rogério",
"email": "[email protected]",
"url": "https://github.com/pinceladasdaweb"
},
{
"name": "William Bruno",
"email": "[email protected]",
"url": "https://github.com/wbruno"
},
{
"name": "Renan Martins Pimentel",
"email": "[email protected]",
"url": "https://github.com/renanmpimentel"
},
{
"name": "Samuel Berwanger",
"email": "[email protected]",
"url": "https://github.com/samuelbwr"
}
],
"keywords": [
"express4-boilerplate",
"boilerplate",
"static"
],
"license": "MIT",
"engines": {
"node": "0.10.x"
},
"dependencies": {
"compression": "^1.6.0",
"express": "^4.13.3",
"hbs": "^4.0.0",
"moment": "^2.10.6",
"mongoose": "^4.2.4"
},
"devDependencies": {
"assemble": "~0.4.42",
"grunt": "~0.4.5",
"grunt-contrib-clean": "~0.6.0",
"grunt-contrib-copy": "~0.8.0",
"grunt-replace": "~0.8.0",
"istanbul": "^0.3.8",
"mocha": "^2.3.3",
"nodemon": "~1.3.7",
"should": "^5.2.0",
"supertest": "^0.15.0"
}
}