-
Notifications
You must be signed in to change notification settings - Fork 40
/
package.json
36 lines (36 loc) · 886 Bytes
/
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
{
"name": "smartcrop-cli",
"version": "2.0.3",
"description": "Command line interface for the smartcrop library to provide content aware image cropping.",
"homepage": "https://github.com/jwagner/smartcrop-cli",
"author": "Jonas Wagner <[email protected]> (http://29a.ch/)",
"preferGlobal": true,
"bin": {
"smartcrop": "smartcrop-cli.js"
},
"files": [
"smartcrop-cli.js"
],
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/jwagner/smartcrop-cli.git"
},
"dependencies": {
"concat-stream": "^1.6.2",
"gm": "^1.23.1",
"smartcrop-gm": "~1.0.1",
"underscore": "~1.6.0",
"yargs": "~1.2.1"
},
"optionalDependencies": {
"opencv": "^6.0.0"
},
"devDependencies": {
"eslint": "^4.19.1",
"prettier-eslint": "^8.8.2"
},
"scripts": {
"test": "eslint smartcrop-cli.js && ./test.sh"
}
}