-
Notifications
You must be signed in to change notification settings - Fork 13
/
package.json
51 lines (51 loc) · 1.24 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
46
47
48
49
50
51
{
"name": "simple-thumbnail",
"version": "0.0.0-development",
"description": "Produce thumbnails from images, videos and URLs",
"main": "index.js",
"license": "MIT",
"author": "Philip Scott <[email protected]>",
"keywords": [
"thumbnail",
"video",
"ffmpeg",
"picture",
"image",
"resize",
"webm",
"mp4",
"png",
"preview",
"url"
],
"scripts": {
"fix": "standard --fix",
"lint": "standard",
"test": "standard && nyc ava",
"coverage": "nyc report --reporter=text-lcov | coveralls",
"semantic-release": "semantic-release",
"travis-deploy-once": "travis-deploy-once --pro",
"contributors:add": "all-contributors add",
"contributors:generate": "all-contributors generate"
},
"repository": {
"type": "git",
"url": "https://github.com/ScottyFillups/simple-thumbnail.git"
},
"devDependencies": {
"all-contributors-cli": "^5.4.1",
"ava": "^1.0.1",
"coveralls": "^3.0.2",
"ffmpeg-static": "^2.4.0",
"fs-extra": "^7.0.1",
"looks-same": "^3.3.0",
"nock": "^9.6.1",
"nyc": "^14.1.1",
"semantic-release": "^15.13.13",
"standard": "^12.0.1",
"travis-deploy-once": "^5.0.9"
},
"dependencies": {
"duplexify": "^4.0.0"
}
}