forked from jwagner/smartcrop.js
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
42 lines (42 loc) · 1.17 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
{
"name": "smartcrop",
"version": "2.0.3",
"description": "Content aware image cropping.",
"homepage": "https://github.com/jwagner/smartcrop.js",
"author": "Jonas Wagner <jonas@29a.ch> (http://29a.ch/)",
"main": "./smartcrop",
"files": [
"smartcrop.js"
],
"devDependencies": {
"500px": "~0.5.1",
"benchmark": "^2.1.4",
"chai": "^4.2.0",
"eslint": "^5.16.0",
"face-api.js": "^0.20.0",
"grunt": "^1.0.4",
"grunt-cli": "^1.3.2",
"grunt-contrib-connect": "~2.0.0",
"grunt-contrib-watch": "^1.1.0",
"grunt-rsync": "~3.0.0",
"karma": "^4.1.0",
"karma-chrome-launcher": "^2.2.0",
"karma-mocha": "^1.3.0",
"karma-sauce-launcher": "^2.0.2",
"microtime": "^3.0.0",
"mocha": "^6.1.4",
"prettier-eslint": "^8.8.2",
"promise-polyfill": "^8.1.0"
},
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/jwagner/smartcrop.js.git"
},
"scripts": {
"start": "grunt",
"test": "npm run lint && karma start karma.conf.js",
"lint": "eslint smartcrop.js test examples/slideshow.js examples/testbed.js examples/testsuite.js examples/smartcrop-debug.js"
},
"dependencies": {}
}