-
Notifications
You must be signed in to change notification settings - Fork 16
/
package.json
44 lines (44 loc) · 1.01 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
{
"name": "webgif",
"version": "1.1.0",
"description": "Easily generate animated GIFs from websites",
"main": "index.js",
"bin": {
"webgif": "./index.js"
},
"scripts": {
"test": "nyc -r text -r html -r lcov mocha",
"website": "mkdir -p website; (cat header.html; showdown makehtml -m -i README.md) > website/index.html"
},
"engines": {
"node": ">=7.6.0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/anishkny/webgif.git"
},
"keywords": [
"gif",
"puppeteer",
"web"
],
"author": "Anish Karandikar <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/anishkny/webgif/issues"
},
"homepage": "https://github.com/anishkny/webgif#readme",
"dependencies": {
"gifencoder": "^1.1.0",
"png-file-stream": "^1.0.0",
"puppeteer": "^1.2.0",
"tempdir": "^2.0.0",
"yargs": "^12.0.1"
},
"devDependencies": {
"mocha": "^5.2.0",
"nyc": "^12.0.1",
"shelljs": "^0.8.1",
"showdown": "^1.8.6"
}
}