forked from honza/node-thumbnail
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
41 lines (41 loc) · 937 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
{
"name": "node-thumbnail",
"description": "thumbnail all the things",
"keywords": [
"thumbnail",
"images"
],
"author": "Honza Pokorny",
"version": "0.14.0",
"license": "BSD-2-Clause",
"main": "./src/thumbnail.js",
"engines": {
"node": ">=8.11.0"
},
"bin": {
"thumb": "./bin/thumb"
},
"homepage": "https://github.com/honza/node-thumbnail",
"repository": {
"type": "git",
"url": "git://github.com/honza/node-thumbnail.git"
},
"dependencies": {
"async": "2.3.0",
"commander": "2.9.0",
"jimp": "0.2.27",
"lodash": "4.17.4"
},
"scripts": {
"test": "jasmine",
"lint": "eslint src bin/thumb",
"prettier": "prettier --write --single-quote src/thumbnail.js bin/thumb"
},
"devDependencies": {
"eslint": "^4.15.0",
"eslint-config-prettier": "^2.9.0",
"eslint-plugin-prettier": "^2.5.0",
"jasmine": "^2.5.3",
"prettier": "^1.5.3"
}
}