forked from Stremio/stremio-addon-sdk
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
46 lines (46 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
{
"name": "stremio-addon-sdk",
"version": "1.2.0",
"description": "An SDK for making and publishing Stremio add-ons",
"main": "./src/index.js",
"scripts": {
"pretest": "eslint --ignore-path .gitignore .",
"test": "tape test/*"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Stremio/stremio-addon-sdk.git"
},
"keywords": [
"stremio",
"addons",
"video",
"streaming"
],
"author": "Smart Code OOD",
"license": "MIT",
"bugs": {
"url": "https://github.com/Stremio/stremio-addon-sdk/issues"
},
"bin": {
"addon-bootstrap": "./cli/bootstrap.js"
},
"homepage": "https://github.com/Stremio/stremio-addon-sdk#readme",
"dependencies": {
"chalk": "^2.4.2",
"cors": "^2.8.4",
"express": "^4.16.3",
"inquirer": "^6.2.2",
"mkdirp": "^0.5.1",
"node-fetch": "^2.3.0",
"opn": "^5.4.0",
"router": "^1.3.3",
"stremio-addon-linter": "^1.6.1"
},
"devDependencies": {
"eslint": "^5.13.0",
"stremio-addon-client": "git://github.com/Stremio/stremio-addon-client.git#v1.1.0",
"supertest": "^3.3.0",
"tape": "^4.9.0"
}
}