-
Notifications
You must be signed in to change notification settings - Fork 19
/
Copy pathpackage.json
45 lines (45 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
42
43
44
45
{
"name": "puppeteer-lottie-cli",
"version": "1.0.9",
"description": "CLI for rendering Lottie animations via Puppeteer to image, GIF, or MP4.",
"main": "index.js",
"repository": "transitive-bullshit/puppeteer-lottie-cli",
"author": "Travis Fischer <travis@transitivebullsh.it>",
"license": "MIT",
"bin": {
"puppeteer-lottie": "index.js"
},
"scripts": {
"docs": "update-markdown-usage",
"test": "ava -v && standard"
},
"engines": {
"node": ">=8"
},
"keywords": [
"puppeteer",
"lottie",
"lottie-web",
"bodymovin",
"after effects",
"render",
"animation",
"png",
"ffmpeg",
"gifski",
"gif",
"mp4",
"video",
"cli"
],
"devDependencies": {
"ava": "^1.4.1",
"execa": "^1.0.0",
"standard": "^12.0.1",
"update-markdown-usage": "^1.0.7"
},
"dependencies": {
"commander": "^4.1.1",
"puppeteer-lottie": "^1.0.9"
}
}