-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
61 lines (61 loc) · 1.1 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
60
61
{
"name": "heif",
"description": "Node.js native addons for HEIF",
"version": "0.0.1",
"contributors": [
{
"name": "Nicola Del Gobbo",
"email": "[email protected]"
},
{
"name": "Mauro Doganieri",
"email": "[email protected]"
}
],
"keywords": [
"heif",
"image",
"jpeg",
"hevc",
"shvc",
"avc",
"mv-hevc",
"heic",
"png",
"jpg",
"gif"
],
"license": "Apache-2.0",
"scripts": {
"test": "node node_modules/jasmine/bin/jasmine.js JASMINE_CONFIG_PATH=__tests__/jasmine.json"
},
"engines": {
"node": ">= 6.0.0"
},
"gypfile": true,
"repository": {
"type": "git",
"url": "https://github.com/NickNaso/heif.git"
},
"bugs": {
"url": "https://github.com/NickNaso/heif/issues"
},
"homepage": "http://www.nacios.it/",
"dependencies": {
"bindings": "^1.3.0",
"nan": "^2.6.2"
},
"devDependencies": {
"jasmine": "^2.8.0"
},
"main": "./index.js",
"files": [
"LICENSE",
"README.md",
"CHANGELOG.md",
"binding.gyp",
"index.js",
"lib/",
"src/"
]
}