-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
50 lines (50 loc) · 929 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
50
{
"name": "is-heic",
"version": "1.0.0",
"description": "Check if a Buffer/Uint8Array is a HEIC image",
"main": "index.js",
"scripts": {
"test": "mocha"
},
"author": {
"name": "Oleh Aleinyk",
"email": "[email protected]",
"url": "https://github.com/oaleynik"
},
"repository": {
"type": "git",
"url": "git+https://github.com/oaleynik/is-heic.git"
},
"license": "MIT",
"engines": {
"node": ">=4.0.0"
},
"files": [
"index.js"
],
"keywords": [
"binary",
"buffer",
"check",
"detect",
"exif",
"heic",
"image",
"img",
"is",
"photo",
"pic",
"picture",
"type",
"uint8array"
],
"devDependencies": {
"mocha": "^4.1.0",
"read-chunk": "^2.1.0"
},
"bugs": {
"url": "https://github.com/oaleynik/is-heic/issues"
},
"homepage": "https://github.com/oaleynik/is-heic#readme",
"dependencies": {}
}