-
Notifications
You must be signed in to change notification settings - Fork 15
/
package.json
45 lines (45 loc) · 1.03 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
{
"name": "heic-decode",
"version": "2.0.0",
"description": "Decode HEIC images to raw data",
"main": "index.js",
"scripts": {
"pretest": "node scripts/images.js",
"test": "mocha \"test/**/*.js\" --timeout 20000 --slow 0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/catdad-experiments/heic-decode.git"
},
"keywords": [
"heic",
"heif",
"image",
"photo",
"decode"
],
"author": "Kiril Vatev <vatev.1@gmail.com>",
"license": "ISC",
"bugs": {
"url": "https://github.com/catdad-experiments/heic-decode/issues"
},
"homepage": "https://github.com/catdad-experiments/heic-decode#readme",
"dependencies": {
"libheif-js": "^1.17.1"
},
"devDependencies": {
"buffer-to-uint8array": "^1.1.0",
"chai": "^4.2.0",
"eslint": "^5.16.0",
"fs-extra": "^8.1.0",
"jimp": "^0.9.3",
"mocha": "^7.0.0",
"node-fetch": "^2.6.0",
"pixelmatch": "^5.2.1",
"pngjs": "^5.0.0",
"rootrequire": "^1.0.0"
},
"engines": {
"node": ">=8.0.0"
}
}