-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
80 lines (80 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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
{
"name": "magick-cli",
"description": "Native ImageMagick CLI for Node.js",
"version": "2.0.0",
"contributors": [
{
"name": "Nicola Del Gobbo",
"email": "[email protected]"
},
{
"name": "Mauro Doganieri",
"email": "[email protected]"
}
],
"keywords": [
"ImageMagick",
"cli",
"image",
"processing",
"PNG",
"JPEG",
"JPEG-2000",
"GIF",
"TIFF",
"DPX",
"EXR",
"WebP",
"Postscript",
"PDF",
"SVG",
"resize",
"flip",
"mirror",
"rotate",
"distort",
"transform",
"colors",
"effects",
"Bézier",
"polygons",
"text",
"line",
"ellipses"
],
"license": "Apache-2.0",
"scripts": {
"test": "node node_modules/jasmine/bin/jasmine.js JASMINE_CONFIG_PATH=test/jasmine.json",
"install": "node-gyp rebuild"
},
"engines": {
"node": ">= 6.0.0"
},
"gypfile": true,
"repository": {
"type": "git",
"url": "https://github.com/NickNaso/magick-cli.git"
},
"bugs": {
"url": "https://github.com/NickNaso/magick-cli/issues"
},
"homepage": "http://www.nacios.it/",
"dependencies": {
"bindings": "^1.3.0",
"node-addon-api": "^1.3.0"
},
"devDependencies": {
"jasmine": "^3.1.0"
},
"files": [
"LICENSE",
"README.md",
"CHANGELOG.md",
"CODE_OF_CONDUCT.md",
"index.js",
"binding.gyp",
"magick-cli-path.py",
"lib/",
"src/"
]
}