-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
48 lines (48 loc) · 1.12 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
{
"name": "browser-image-hash",
"version": "0.0.5",
"description": "Image to dhash for Browser",
"main": "dist/index.js",
"files": [
"dist"
],
"scripts": {
"build": "rm -rf dist && tsc -p tsconfig.build.json",
"prepare": "npm run test && npm run build",
"test": "jest"
},
"keywords": [
"image",
"dhash",
"imagehash",
"difference",
"hashing"
],
"author": "ytetsuro",
"repository": {
"type": "git",
"url": "git+ssh://git@github.com:ytetsuro/image-hash.git"
},
"bugs": {
"url": "https://github.com/ytetsuro/image-hash/issues"
},
"homepage": "https://github.com/ytetsuro/image-hash#readme",
"license": "MIT",
"dependencies": {
"@rgba-image/lanczos": "^0.1.0",
"decimal.js": "^10.2.0",
"wasm-imagemagick": "^1.2.3"
},
"devDependencies": {
"@babel/preset-env": "^7.12.1",
"@babel/preset-typescript": "^7.12.1",
"@types/decimal.js": "^7.4.0",
"@types/jest": "^26.0.14",
"@types/jsdom": "^16.2.4",
"@types/node": "^16.3.0",
"jest": "^27.0.6",
"jsdom": "^16.4.0",
"ts-jest": "^27.0.4",
"typescript": "^4.0.2"
}
}