-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
59 lines (59 loc) · 1.2 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
{
"name": "oddworks-livestream-provider",
"version": "2.2.5",
"description": "An Oddworks provider plugin for Livestream APIs",
"main": "index.js",
"scripts": {
"test": "xo && ava"
},
"repository": {
"type": "git",
"url": "git+https://github.com/oddnetworks/oddworks-livestream-provider.git"
},
"keywords": [
"Oddworks",
"Video",
"Media",
"API",
"Source",
"Provider"
],
"author": "Odd Networks Inc.",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/oddnetworks/oddworks-livestream-provider/issues"
},
"homepage": "https://github.com/oddnetworks/oddworks-livestream-provider#readme",
"dependencies": {
"bluebird": "~3.5.1",
"debug": "~3.1.0",
"request": "~2.85.0",
"yargs": "~7.0.0"
},
"devDependencies": {
"ava": "~0.18.0",
"nock": "~9.0.0",
"oddcast": "~2.2.0",
"sinon": "~1.17.5",
"xo": "~0.16.0"
},
"ava": {
"files": [
"test/**/*-test.js"
],
"source": [
"lib/**/*",
"index.js"
]
},
"xo": {
"esnext": true,
"envs": [
"node"
],
"rules": {
"object-property-newline": 0,
"no-use-extend-native/no-use-extend-native": 0
}
}
}