forked from AlgorithmsMeetup/ImageProcessing
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
20 lines (20 loc) · 742 Bytes
/
package.json
File metadata and controls
20 lines (20 loc) · 742 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
{
"name": "imageprocessing",
"version": "1.0.0",
"description": "image operations - read(image) - filter(image, filterFunction) - resize(image, height, width) - crop(image1, height, width) - merge(image1, image2) (undoes diff) - diff(image1, image2) (undoes merge)",
"main": "index.js",
"scripts": {
"start": "node index.js",
"clean": "rm images/out/*.png"
},
"repository": {
"type": "git",
"url": "https://github.com/AlgorithmsMeetup/ImageProcessing.git"
},
"author": "Mike Luby <Michael@mLuby.com> (https://github.com/mLuby)",
"license": "ISC",
"bugs": {
"url": "https://github.com/AlgorithmsMeetup/ImageProcessing/issues"
},
"homepage": "https://github.com/AlgorithmsMeetup/ImageProcessing"
}