-
Notifications
You must be signed in to change notification settings - Fork 122
Expand file tree
/
Copy pathpackage.json
More file actions
45 lines (45 loc) · 1.13 KB
/
package.json
File metadata and controls
45 lines (45 loc) · 1.13 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
34
35
36
37
38
39
40
41
42
43
44
45
{
"author": "Litten <litten225@qq.com>",
"name": "zing-gallery",
"description": "NodeJS Photo Gallery using directory structure & exif info to output a gallery",
"version": "1.0.0",
"license": "MIT",
"repository": {
"url": ""
},
"main": "lib/gallery.js",
"engines": {
"node": ">=0.6.2"
},
"dependencies": {
"css-loader": "^0.25.0",
"ejs": "*",
"exif": "*",
"express": "*",
"extract-text-webpack-plugin": "^1.0.1",
"formidable": "^1.0.17",
"gm": "^1.17.0",
"image-size": "^0.5.0",
"imagemagick": "^0.1.3",
"imagemagick-stream": "^1.1.0",
"imagemin": "^5.3.1",
"imagemin-jpegtran": "^5.0.2",
"imagemin-pngquant": "^5.0.1",
"images": "^3.0.0",
"in-viewport": "^3.5.0",
"memory-cache": "*",
"style-loader": "^0.13.1",
"underscore": "*",
"url-loader": "^0.5.7",
"watch": "^1.0.1",
"webp-bin": "^0.1.4",
"webpack": "^1.13.2"
},
"scripts": {
"start": "node app.js",
"clean": "node clean.js",
"dev": "webpack",
"dist": "webpack -p",
"test": "node test/test-gallery.js ; node test/test-album.js ; node test/test-photo.js"
}
}