-
Notifications
You must be signed in to change notification settings - Fork 13
/
package.json
50 lines (50 loc) · 1.15 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
{
"name": "maxstagram",
"version": "2.0.0",
"description": "A flexible, continuous image processing web service.",
"keywords": [
"maxstagram",
"image processing",
"photo filters",
"random art"
],
"scripts": {
"clean": "rm -f webroot/base/* webroot/derived/* uploads/* && echo \"db.dropDatabase()\" | mongo maxstagram_test",
"dev": "node main.js",
"prod": "node main.js --test=false"
},
"repository": {
"type": "git",
"url": "git://github.com/mayanklahiri/maxstagram.git"
},
"author": {
"name": "Mayank Lahiri",
"email": "[email protected]",
"url": "http://lahiri.me/"
},
"dependencies": {
"winston": "^0.7.2",
"minimist": "0.0.8",
"formidable": "^1.0.14",
"express": "^3.4.8",
"async": "~0.2.10",
"imagemagick": "^0.1.3",
"jade": "~1.2.0",
"mailgun": "~0.4.2",
"winston-mongodb": "^0.4.3",
"mongodb": "^1.3.23"
},
"devDependencies": {
"docco": ">= 0.4.4 < 1"
},
"licenses": [
{
"type": "MIT",
"url": "https://raw.github.com/senchalabs/connect/master/LICENSE"
}
],
"main": "main",
"engines": {
"node": ">= 0.10.0"
}
}