-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
64 lines (64 loc) · 1.12 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
52
53
54
55
56
57
58
59
60
61
62
63
64
{
"name": "movie-info",
"version": "3.0.2",
"description": "Get information, images, rating, description, etc. about a movie.",
"license": "MIT",
"repository": "lacymorrow/movie-info",
"main": "index.js",
"browser": "index.js",
"author": {
"name": "Lacy Morrow",
"email": "[email protected]",
"url": "http://lacymorrow.com"
},
"funding": [
{
"type": "patreon",
"url": "https://patreon.com/lacymorrow"
},
{
"type": "individual",
"url": "http://lacymorrow.com/donate"
},
"https://www.buymeacoffee.com/lm"
],
"bin": {
"movie-info": "cli.js"
},
"engines": {
"node": ">=0.10.0"
},
"scripts": {
"release": "np",
"test": "ava --verbose"
},
"files": [
"cli.js",
"index.js"
],
"keywords": [
"cli",
"bin",
"app",
"movie",
"image",
"poster",
"details",
"info",
"description",
"url",
"uri",
"path"
],
"devDependencies": {
"ava": "^5.3.1",
"eslint": "^8.52.0",
"np": "^8.0.4"
},
"dependencies": {
"isomorphic-fetch": "^3.0.0"
},
"xo": {
"esnext": true
}
}