forked from uber-archive/image-diff
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
54 lines (54 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
47
48
49
50
51
52
53
54
{
"name": "image-diff",
"description": "Create image differential between two images",
"version": "1.1.0",
"homepage": "https://github.com/uber/image-diff",
"author": {
"name": "Todd Wolfson",
"email": "[email protected]",
"url": "http://twolfson.com/"
},
"repository": {
"type": "git",
"url": "git://github.com/uber/image-diff.git"
},
"bugs": {
"url": "https://github.com/uber/image-diff/issues"
},
"licenses": [
{
"type": "MIT",
"url": "https://github.com/uber/image-diff/blob/master/LICENSE-MIT"
}
],
"main": "lib/image-diff",
"engines": {
"node": ">= 0.8.0"
},
"scripts": {
"test": "grunt jshint && mocha"
},
"dependencies": {
"async": "~0.2.9",
"buffered-spawn": "~1.1.1",
"gm": "~1.13.3",
"mkdirp": "~0.3.5",
"tmp": "0.0.23"
},
"devDependencies": {
"foundry": "~3.1.0",
"foundry-release-git": "~1.1.0",
"foundry-release-npm": "~1.1.0",
"get-pixels": "~1.0.1",
"grunt": "~0.4.1",
"grunt-cli": "~0.1.11",
"grunt-contrib-jshint": "~0.6.0",
"grunt-contrib-watch": "~0.4.0",
"mocha": "~1.11.0",
"rimraf": "~2.2.6"
},
"keywords": [
"image",
"diff"
]
}