forked from danm/image-hash
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
53 lines (53 loc) · 1.3 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
49
50
51
52
53
{
"name": "image-hash",
"version": "3.3.6",
"description": "Create a hash from an image",
"main": "lib/imageHash.js",
"types": "lib/imageHash.d.ts",
"scripts": {
"test": "jest",
"build": "tsc"
},
"files": [
"lib"
],
"repository": {
"type": "git",
"url": "git+https://github.com/danm/image-hash.git"
},
"keywords": [
"phash",
"hash",
"image hash",
"perceptual hash"
],
"author": "Daniel Morrison <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/danm/image-hash/issues"
},
"homepage": "https://github.com/danm/image-hash#readme",
"dependencies": {
"file-type": "^9.0.0",
"jpeg-js": "^0.2.0",
"pngjs": "^3.3.3",
"request": "^2.81.0"
},
"devDependencies": {
"@babel/cli": "^7.2.3",
"@babel/core": "^7.2.2",
"@babel/plugin-transform-modules-commonjs": "^7.4.4",
"@babel/preset-env": "^7.3.1",
"@babel/preset-typescript": "^7.1.0",
"@babel/runtime": "^7.3.1",
"@types/jest": "^24.0.12",
"@types/node": "^11.13.8",
"@typescript-eslint/eslint-plugin": "^1.7.0",
"@typescript-eslint/parser": "^1.7.0",
"eslint": "^5.16.0",
"eslint-config-airbnb-typescript": "^3.0.0",
"eslint-plugin-import": "^2.17.2",
"jest": "^24.0.0",
"typescript": "^3.3.1"
}
}