-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
59 lines (59 loc) · 1.44 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
54
55
56
57
58
59
{
"name": "libheif-js",
"version": "1.18.2",
"description": "Emscripten distribution of libheif for Node.JS and the browser",
"main": "index.js",
"scripts": {
"pretest": "npm run -s images",
"test": "mocha test/**/*.test.js --timeout 4000",
"fetch": "node scripts/install.js",
"images": "node scripts/images.js",
"inspect": "node scripts/convert.js < temp/0002.heic > out.png",
"lint": "eslint test/**/*.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/catdad-experiments/libheif-js.git"
},
"files": [
"index.js",
"wasm.js",
"wasm-bundle.js",
"libheif",
"libheif-wasm"
],
"author": "Kiril Vatev <[email protected]>",
"license": "LGPL-3.0",
"bugs": {
"url": "https://github.com/catdad-experiments/libheif-js/issues"
},
"homepage": "https://github.com/catdad-experiments/libheif-js#readme",
"devDependencies": {
"babel-eslint": "^10.1.0",
"chai": "^4.2.0",
"esbuild": "^0.19.5",
"esbuild-plugins-node-modules-polyfill": "^1.6.7",
"eslint": "^5.16.0",
"fs-extra": "^8.1.0",
"gunzip-maybe": "^1.4.2",
"mocha": "^7.0.0",
"node-fetch": "^2.6.0",
"pixelmatch": "^5.2.1",
"pngjs": "^3.4.0",
"rootrequire": "^1.0.0",
"tar-stream": "^3.1.6"
},
"engines": {
"node": ">=8.0.0"
},
"keywords": [
"heif",
"heic",
"libheif",
"decoder",
"node",
"browser",
"emscripten",
"wasm"
]
}