-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
43 lines (43 loc) · 943 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
37
38
39
40
41
42
43
{
"author": "Alexey Pedyashev",
"description": "Optimized thumbnail-generation algorithm (edge-maximizing crop & resize)",
"name": "opticrop-node",
"version": "1.0.0",
"repository": {
"type": "git",
"url": "https://github.com/apedyashev/opticrop-node"
},
"main": "./lib/opticrop",
"types": "lib/opticrop",
"keywords": [
"intelligent",
"smart",
"image",
"crop",
"thumbnail",
"preview",
"generation"
],
"private": false,
"scripts": {
"test": "npm run build && node test.js",
"build": "tsc -p .",
"lint": "tslint -c tslint.json -t verbose src/**/*.ts"
},
"dependencies": {
"async": "0.9.0",
"bluebird": "^3.5.0",
"gm": "1.16.0",
"memwatch-next": "^0.3.0",
"node-gd": "1.5.0"
},
"engines": {
"node": "*"
},
"devDependencies": {
"@types/node": "^7.0.23",
"mkdirp": "^0.5.1",
"tslint": "^5.4.3",
"typescript": "^2.3.4"
}
}