-
Notifications
You must be signed in to change notification settings - Fork 11
/
package.json
46 lines (46 loc) · 1.19 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
{
"name": "ecto",
"version": "0.0.1-45",
"private": false,
"description": "Simple/fast node.js blogging system.",
"author": {
"name": "Pierre-Antoine 'leny' Delnatte",
"email": "pierre-antoine@delnatte.be",
"url": "http://leny.me"
},
"homepage": "https://github.com/leny/ecto",
"repository": {
"type": "git",
"url": "https://github.com/leny/ecto.git"
},
"license": "MIT",
"production": false,
"config": {
"port": 50001,
"secret": "My super secret session phrase",
"users": {
"leny": "a94a8fe5ccb19ba61c4c0873d391e987982fbbd3"
}
},
"scripts": {
"start": "node server/server.js"
},
"engines": {
"node": ">= 0.10.0"
},
"devDependencies": {
"grunt": "~0.4.1",
"grunt-clear": "~0.2.1",
"grunt-contrib-jshint": "~0.1.1",
"grunt-bumpup": "~0.2.0",
"grunt-contrib-watch": "~0.2.0",
"grunt-contrib-uglify": "~0.2.4",
"grunt-nodemon": "~0.1.1",
"grunt-concurrent": "~0.2.0"
},
"dependencies": {
"express": "~3.1.0",
"jade": "~0.30.0",
"markdown": "~0.5.0"
}
}