-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathpackage.json
More file actions
42 lines (42 loc) · 734 Bytes
/
package.json
File metadata and controls
42 lines (42 loc) · 734 Bytes
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
{
"name": "text-meme-cli",
"version": "1.1.0",
"description": "Generate text meme",
"license": "MIT",
"repository": "beatfreaker/text-meme-cli",
"author": {
"name": "beatfreaker",
"email": "radiachints1512@gmail.com",
"url": "beatfreaker.github.io"
},
"bin": {
"text-meme": "cli.js"
},
"engines": {
"node": ">=0.10.0"
},
"scripts": {
"test": "xo && ava"
},
"files": [
"cli.js"
],
"keywords": [
"cli-app",
"cli",
"meme",
"text meme",
"utility",
"gif"
],
"dependencies": {
"meow": "^3.6.0",
"text-meme": "^2.1.0"
},
"devDependencies": {
"ava": "^0.8.0",
"execa": "^0.1.1",
"path-exists": "^2.1.0",
"xo": "^0.12.1"
}
}