-
Notifications
You must be signed in to change notification settings - Fork 577
/
package.json
45 lines (45 loc) · 1.25 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
{
"name": "smartcrop",
"version": "2.0.5",
"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",
"index.d.ts"
],
"devDependencies": {
"benchmark": "^2.1.4",
"chai": "^4.2.0",
"eslint": "^8.56.0",
"@vladmandic/face-api": "^1.7.13",
"grunt": "^1.6.1",
"grunt-cli": "^1.4.3",
"grunt-contrib-connect": "~4.0.0",
"grunt-contrib-watch": "^1.1.0",
"grunt-rsync": "~3.0.0",
"karma": "^6.4.2",
"karma-chrome-launcher": "^3.2.0",
"karma-mocha": "^2.0.1",
"karma-sauce-launcher": "^4.3.6",
"microtime": "^3.1.1",
"mocha": "^9.0.2",
"prettier-eslint": "^16.3.0",
"promise-polyfill": "^8.3.0"
},
"overrides": {
"saucelabs": "^7.5.0",
"webdriverio": "^8.29.0"
},
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/jwagner/smartcrop.js.git"
},
"scripts": {
"start": "grunt",
"test": "karma start karma.conf.js && npx tsc -noEmit test/types.ts",
"lint": "eslint smartcrop.js test examples/slideshow.js examples/testbed.js examples/testsuite.js examples/smartcrop-debug.js"
}
}