-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
51 lines (51 loc) · 1.17 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
{
"name": "heic-cli",
"version": "1.1.1",
"description": "Convert HEIC/HEIF images to JPEG and PNG from the command line",
"bin": {
"heic-cli": "bin.js"
},
"scripts": {
"pretest": "node scripts/images.js",
"test": "mocha --timeout 40000 \"test/**/*.js\""
},
"repository": {
"type": "git",
"url": "git+https://github.com/catdad-experiments/heic-cli.git"
},
"keywords": [
"heic",
"heif",
"convert",
"cli",
"image",
"jpeg",
"png"
],
"author": "Kiril Vatev <[email protected]>",
"license": "ISC",
"bugs": {
"url": "https://github.com/catdad-experiments/heic-cli/issues"
},
"homepage": "https://github.com/catdad-experiments/heic-cli#readme",
"dependencies": {
"heic-convert": "^1.2.4",
"yargs": "^15.1.0"
},
"devDependencies": {
"buffer-to-uint8array": "^1.1.0",
"chai": "^4.2.0",
"end-of-stream": "^1.4.4",
"eslint": "^5.16.0",
"file-type": "^13.1.1",
"fs-extra": "^8.1.0",
"jpeg-js": "^0.4.1",
"mocha": "^7.0.0",
"node-fetch": "^2.6.0",
"pixelmatch": "^5.2.1",
"pngjs": "^5.0.0",
"rootrequire": "^1.0.0",
"shellton": "^5.0.0",
"tempy": "^0.3.0"
}
}