-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
49 lines (49 loc) · 1001 Bytes
/
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
{
"name": "img-items",
"version": "0.1.0",
"description": "Finds individual items inside an image and gets their size/coordinates.",
"keywords": [
"detect",
"extract",
"image",
"img",
"item",
"jimp",
"screenshot"
],
"author": {
"name": "Kodie Grantham",
"email": "kodie.grantham@gmail.com",
"url": "https://kodieg.com"
},
"repository": {
"type": "git",
"url": "https://github.com/kodie/img-items.git"
},
"bugs": {
"url": "https://github.com/kodie/img-items/issues"
},
"homepage": "https://github.com/kodie/img-items",
"license": "MIT",
"main": "index.js",
"files": [
"index.js"
],
"scripts": {
"test": "standard && ava"
},
"engines": {
"node": ">=8.0.0"
},
"dependencies": {
"color": "^3.1.3",
"color-difference": "^0.3.4",
"color-thief-jimp": "^2.0.2",
"jimp": "^0.16.1"
},
"devDependencies": {
"ava": "^1.4.1",
"fs-extra": "^8.1.0",
"standard": "^11.0.1"
}
}