-
-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathpackage.json
113 lines (113 loc) · 2.13 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
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
{
"name": "movie-trailer",
"version": "3.2.2",
"description": "Get movie & TV trailer url(s): Oceans Eleven ➔ http://path/to/trailer",
"license": "MIT",
"main": "index.js",
"browser": "index.js",
"repository": {
"type": "git",
"url": "git://github.com/lacymorrow/movie-trailer"
},
"author": {
"name": "Lacy Morrow",
"email": "me@lacymorrow.com",
"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-trailer": "cli.js"
},
"engines": {
"node": ">=7.6.0"
},
"scripts": {
"lint": "xo --fix",
"test": "ava --verbose",
"release": "np"
},
"files": [
"cli.js",
"index.js"
],
"keywords": [
"cli",
"bin",
"app",
"movie",
"trailer",
"url",
"uri",
"path"
],
"readmeFilename": "README.md",
"bugs": {
"url": "https://github.com/lacymorrow/movie-trailer/issues"
},
"homepage": "https://github.com/lacymorrow/movie-trailer",
"devDependencies": {
"ava": "^5.3.1",
"np": "^8.0.4",
"xo": "^0.56.0"
},
"dependencies": {
"isomorphic-fetch": "^3.0.0",
"meow": "^4.0.0"
},
"np": {
"publish": true,
"releaseDraft": true
},
"xo": {
"envs": [
"node",
"browser"
],
"rules": {
"array-bracket-spacing": [
"error",
"always"
],
"padded-blocks": [
"error",
{
"blocks": "always",
"switches": "always",
"classes": "always"
}
],
"padding-line-between-statements": [
"error",
{
"blankLine": "always",
"prev": "multiline-block-like",
"next": "*"
},
{
"blankLine": "always",
"prev": "*",
"next": "return"
}
],
"object-curly-spacing": [
"error",
"always"
],
"space-in-parens": [
"error",
"always"
]
},
"semicolon": false
}
}