-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpackage.json
More file actions
36 lines (36 loc) · 739 Bytes
/
Copy pathpackage.json
File metadata and controls
36 lines (36 loc) · 739 Bytes
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
{
"name": "ghash",
"version": "0.1.0",
"description": "Generate fuzzy hashes for images",
"main": "index.js",
"scripts": {
"test": "mocha"
},
"repository": {
"type": "git",
"url": "https://github.com/skedastik/ghash.git"
},
"keywords": [
"fuzzy",
"hash",
"image",
"search"
],
"author": "Alaric Holloway",
"license": "ISC",
"bugs": {
"url": "https://github.com/skedastik/ghash.git"
},
"homepage": "https://github.com/skedastik/ghash",
"devDependencies": {
"chai": "^3.5.0",
"chai-as-promised": "^5.3.0",
"hamming-distance": "^1.0.0",
"mocha": "^2.5.3",
"sprintf-js": "^1.0.3"
},
"dependencies": {
"bluebird": "^3.4.1",
"sharp": "^0.15.0"
}
}