-
Notifications
You must be signed in to change notification settings - Fork 12
/
package.json
51 lines (51 loc) · 1.28 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": "imagickal",
"version": "5.0.1",
"description": "Promised based wrapper for ImageMagick commands.",
"main": "index.js",
"engines": {
"node": ">=8.x.x"
},
"scripts": {
"test": "NODE_ENV=test npm run lint && istanbul cover _mocha -- -u exports -R spec 'test/**/*.test.js'",
"lint": "eslint --ext '.js' lib test index.js",
"release": "npm test && release-it -n -i patch",
"release:minor": "npm test && release-it -n -i minor",
"release:major": "npm test && release-it -n -i major"
},
"repository": {
"type": "git",
"url": "git://github.com/martinj/node-imagickal",
"homepage": "http://github.com/martinj/node-imagickal"
},
"keywords": [
"image",
"imagick",
"imagemagick",
"image-magick"
],
"author": "Martin Jonsson <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/martinj/node-imagickal/issues"
},
"dependencies": {
"bluebird": "^3.3.4",
"debug": "^3.1.0"
},
"devDependencies": {
"@aptoma/eslint-config": "^7.0.1",
"eslint": "^4.13.1",
"file-type": "^11.1.0",
"istanbul": "^0.4.2",
"mocha": "^4.0.1",
"read-chunk": "^2.1.0",
"release-it": "2.4.3",
"should": "^13.1.3"
},
"greenkeeper": {
"ignore": [
"eslint"
]
}
}