forked from cmd430/tv-movie-api
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
75 lines (75 loc) · 2.34 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
{
"name": "popcorn-api",
"version": "2.2.4",
"description": "Popcorn Time API is developed to make it easier for anyone to create their own version of Popcorn Time.",
"dependencies": {
"async-q": "^0.3.1",
"babel-runtime": "^6.20.0",
"body-parser": "^1.15.2",
"bytes": "^2.4.0",
"commander": "^2.9.0",
"compression": "^1.6.2",
"cron": "^1.1.1",
"express": "^4.14.0",
"express-winston": "^2.1.0",
"extratorrent-api": "^1.0.9",
"eztv-api-pt": "^1.0.11",
"fanart.tv-api": "^1.0.2",
"horriblesubs-api": "^1.0.5",
"hummingbird-api": "^1.0.9",
"kat-api-pt": "^1.0.12",
"mongoose": "^4.7.3",
"node-tvdb": "^2.0.20",
"nyaa-api-pt": "^1.0.8",
"omdb-api-pt": "^1.0.0",
"parse-torrent": "^5.8.1",
"prompt": "^1.0.0",
"request": "^2.79.0",
"response-time": "^2.3.2",
"sprintf": "^0.1.5",
"themoviedbclient": "^0.1.3",
"torrent-tracker-health": "^1.0.0",
"trakt.tv": "^2.2.0",
"winston": "^2.3.0"
},
"devDependencies": {
"babel-cli": "^6.18.0",
"babel-eslint": "^7.1.1",
"babel-plugin-transform-async-to-generator": "^6.16.0",
"babel-plugin-transform-runtime": "^6.15.0",
"babel-plugin-transform-strict-mode": "^6.18.0",
"babel-preset-es2015": "^6.18.0",
"babel-register": "^6.18.0",
"del": "^2.2.2",
"dredd": "^2.2.5",
"esdoc": "^0.4.8",
"esdoc-es7-plugin": "0.0.3",
"eslint": "^3.12.2",
"forever": "^0.15.3",
"gulp": "^3.9.1",
"gulp-babel": "^6.1.2"
},
"license": "MIT",
"scripts": {
"test": "./node_modules/.bin/babel-node ./node_modules/.bin/dredd",
"prepublish": "./node_modules/.bin/gulp build",
"start": "node ./build/popcorn-api.js --run",
"start-dev": "./node_modules/.bin/babel-node ./src/popcorn-api.js --run",
"server": "node ./build/popcorn-api.js --server",
"server-dev": "./node_modules/.bin/babel-node ./src/popcorn-api.js --server",
"forever": "./node_modules/.bin/forever start ./build/popcorn-api.js --run",
"docs": "./node_modules/.bin/esdoc -c .esdoc.json",
"lint": "./node_modules/.bin/eslint src/**/*.js"
},
"bin": {
"popcorn-api": "./build/popcorn-api.js"
},
"engines": {
"node": ">=6.3.0"
},
"main": "./build/popcorn-api.js",
"repository": {
"type": "git",
"url": "https://github.com/popcorn-official/popcorn-api.git"
}
}