-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
50 lines (50 loc) · 1.17 KB
/
package.json
File metadata and controls
50 lines (50 loc) · 1.17 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
46
47
48
49
50
{
"name": "image-diffr",
"version": "1.2.1",
"description": "Diff two images",
"main": "./lib/index.js",
"scripts": {
"pretest": "npm run lint",
"test": "./node_modules/.bin/mocha",
"lint": "eslint lib/ test/",
"preversion": "npm run test",
"postversion": "git push && git push --tags",
"release-patch": "npm version patch && npm publish",
"release-minor": "npm version minor && npm publish",
"release-major": "npm version major && npm publish"
},
"bin": {
"image-diffr": "./bin/image-diffr"
},
"directories": {
"lib": "./lib",
"test": "./test"
},
"author": "Jon Hartman",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/jhartman86/image-diffr.git"
},
"bugs": {
"url": "https://github.com/jhartman86/image-diffr/issues"
},
"homepage": "https://github.com/jhartman86/image-diffr#readme",
"keywords": [
"image",
"diff",
"image-diff"
],
"dependencies": {
"chalk": "1.1.3",
"commander": "2.9.0",
"jimp": "0.2.27"
},
"devDependencies": {
"chai": "3.5.0",
"eslint": "3.19.0",
"mocha": "3.2.0",
"nock": "9.0.13",
"sinon": "2.1.0"
}
}