-
Notifications
You must be signed in to change notification settings - Fork 17
/
package.json
44 lines (44 loc) · 1.02 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
{
"name": "imghash",
"version": "0.0.9",
"description": "Image perceptual hash calculation for node",
"main": "index.js",
"scripts": {
"lint": "eslint index.js test/index.spec.js",
"test": "npm run lint && jest"
},
"repository": {
"type": "git",
"url": "git+https://github.com/pwlmaciejewski/imghash.git"
},
"keywords": [
"perceptual",
"image",
"hash",
"phash",
"imgseek"
],
"author": "Paweł Maciejewski <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/pwlmaciejewski/imghash/issues"
},
"engines": {
"node": ">=8.x.x"
},
"homepage": "https://github.com/pwlmaciejewski/imghash#readme",
"devDependencies": {
"eslint": "^7.7.0",
"eslint-config-prettier": "^8.3.0",
"jest": "^27.0.1",
"leven": "^3.1.0",
"prettier": "^2.0.2",
"eslint-plugin-prettier": "^3.1.4"
},
"dependencies": {
"@canvas/image": "^1.0.0",
"blockhash-core": "^0.1.0",
"image-type": "^4.1.0",
"jpeg-js": "^0.4.1"
}
}