-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
69 lines (69 loc) · 2.09 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
{
"name": "moviecast-scraper",
"version": "0.1.0",
"description": "The official content provider of MovieCast.",
"main": "dist",
"scripts": {
"dev": "cross-env NODE_ENV=development nodemon -w src --exec babel-node src/index.js",
"prebuild": "rimraf dist",
"build": "babel src -d dist",
"start": "node dist/index.js",
"lint": "eslint --cache --format=node_modules/eslint-formatter-pretty .",
"lint:fix": "npm run lint -- --fix",
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+https://[email protected]/MovieCast/moviecast-scraper.git"
},
"author": {
"name": "Dizzy",
"email": "[email protected]",
"url": "https://github.com/ItsDizzy"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/MovieCast/moviecast-scraper/issues"
},
"homepage": "https://github.com/MovieCast/moviecast-scraper#readme",
"dependencies": {
"@moviecast/eztv-api": "^0.0.1",
"@moviecast/hapi-endpoint": "^1.0.0",
"@moviecast/yts-api": "^0.0.1",
"boom": "^5.2.0",
"chalk": "^2.3.0",
"dotenv": "^5.0.1",
"extratorrent-api": "^1.1.4",
"fanart.tv": "^2.0.0",
"good": "8.0.0-rc1",
"good-console": "^6.4.0",
"good-squeeze": "^5.0.2",
"hapi": "^17.2.0",
"hoek": "^5.0.3",
"json-stringify-safe": "^5.0.1",
"moment": "^2.20.1",
"mongoose": "^5.0.7",
"node-cron": "^1.2.1",
"p-map": "^1.2.0",
"p-times": "^1.0.1",
"tmdbapi": "^1.0.2",
"trakt.tv": "^6.0.2"
},
"devDependencies": {
"babel-cli": "^6.24.1",
"babel-eslint": "^7.2.3",
"babel-plugin-transform-async-to-generator": "^6.24.1",
"babel-plugin-transform-runtime": "^6.23.0",
"babel-plugin-transform-strict-mode": "^6.24.1",
"babel-preset-es2015": "^6.24.1",
"babel-preset-stage-0": "^6.24.1",
"babel-register": "^6.24.1",
"babel-runtime": "^6.23.0",
"cross-env": "^5.1.3",
"eslint": "4.9.0",
"eslint-config-airbnb-base": "^12.1.0",
"eslint-formatter-pretty": "^1.3.0",
"eslint-plugin-import": "2.7.0",
"nodemon": "^1.11.0"
}
}