forked from aheckmann/gm
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
50 lines (50 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
{
"name": "@reedsy/gm",
"description": "GraphicsMagick and ImageMagick for node.js",
"version": "1.25.0-reedsy-1.0.1",
"author": "Aaron Heckmann <aaron.heckmann+github@gmail.com>",
"keywords": [
"graphics",
"magick",
"image",
"graphicsmagick",
"imagemagick",
"gm",
"convert",
"identify",
"compare"
],
"engines": {
"node": ">=14"
},
"bugs": {
"url": "https://github.com/reedsy/gm/issues"
},
"licenses": [
{
"type": "MIT",
"url": "http://www.opensource.org/licenses/mit-license.php"
}
],
"main": "./index",
"scripts": {
"security": "npm audit",
"test": "npm run security && NODE_OPTIONS=\"--disable-proto=throw\" npm run test-integration",
"test-integration": "node test/ --integration",
"test-unit": "node test/"
},
"repository": {
"type": "git",
"url": "https://github.com/reedsy/gm.git"
},
"license": "MIT",
"devDependencies": {
"async": "~0.9.0"
},
"dependencies": {
"array-parallel": "~0.1.3",
"array-series": "~0.1.5",
"cross-spawn": "^4.0.0",
"debug": "^3.1.0"
}
}