-
Notifications
You must be signed in to change notification settings - Fork 100
/
package.json
106 lines (106 loc) · 3.47 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
{
"name": "popcorn-api",
"version": "3.0.0",
"description": "Popcorn Time API is developed to make it easier for anyone to create their own version of Popcorn Time.",
"dependencies": {
"bytes": "^3.0.0",
"dotenv": "^4.0.0",
"eztv-api-pt": "^1.3.1",
"fanart.tv-api": "^2.0.1",
"horriblesubs-api": "^1.0.8",
"inquirer": "^4.0.1",
"kat-api-pt": "^3.0.0",
"mongoose": "^5.0.0-rc0",
"node-tvdb": "^3.2.0",
"nyaa-api-pt": "^2.0.0",
"omdb-api-pt": "^2.0.1",
"p-map": "^1.2.0",
"p-times": "^1.0.1",
"parse-torrent": "^5.8.3",
"pop-api": "^0.6.2",
"pop-api-scraper": "^0.1.2",
"tmdbapi": "^1.0.2",
"trakt.tv": "^6.0.2",
"webtorrent-health": "^1.1.1",
"yts-api-pt": "^2.0.0"
},
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-plugin-external-helpers": "^6.22.0",
"babel-plugin-istanbul": "^4.1.5",
"babel-plugin-transform-class-properties": "^6.24.1",
"babel-plugin-transform-export-extensions": "^6.22.0",
"babel-plugin-transform-object-rest-spread": "^6.26.0",
"babel-plugin-transform-strict-mode": "^6.24.1",
"babel-preset-env": "^1.6.1",
"babel-preset-flow": "^6.23.0",
"babel-register": "^6.26.0",
"chai": "^4.1.2",
"coveralls": "^3.0.0",
"cross-env": "^5.1.3",
"del": "^3.0.0",
"dredd": "^4.9.2",
"esdoc": "^1.0.4",
"esdoc-ecmascript-proposal-plugin": "1.0.0",
"esdoc-flow-type-plugin": "1.0.1",
"esdoc-standard-plugin": "^1.0.0",
"eslint": "^4.14.0",
"eslint-config-vixo": "^2.0.2",
"express": "^4.16.2",
"flow": "^0.2.3",
"flow-bin": "^0.62.0",
"flow-typed": "^2.2.3",
"forever": "^0.15.3",
"husky": "^0.14.3",
"mkdirp": "^0.5.1",
"mocha": "^4.1.0",
"nyc": "^11.4.1",
"rollup": "^0.53.2",
"rollup-plugin-babel": "^3.0.3",
"rollup-plugin-commonjs": "^8.2.6",
"rollup-plugin-json": "^2.3.0",
"rollup-plugin-node-resolve": "^3.0.0",
"rollup-plugin-uglify": "^2.0.1",
"sinon": "^4.1.3",
"standard-version": "^4.2.0",
"supertest": "^3.0.0",
"uglify-es": "^3.3.4"
},
"license": "MIT",
"scripts": {
"build": "cross-env NODE_ENV=production rollup -c",
"coveralls": "cat ./coverage/lcov.info | coveralls",
"debug": "npm run dev --inspect-brk",
"dev": "cross-env NODE_ENV=development node --require babel-register ./src/index.js",
"docs": "esdoc -c .esdoc.json",
"flow": "flow",
"flow-typed": "flow-typed install",
"forever": "cross-env NODE_ENV=production forever start ./build/popcorn-api.js",
"lint": "eslint {src,test}/** ./*.js",
"release": "git add ./docs/* && standard-version -a",
"precommit": "npm run lint && npm run flow",
"prerelease": "npm run build && npm run docs",
"prepush": "npm run test",
"pretest": "npm run build",
"providers": "babel-node ./src/index.js --providers",
"start": "cross-env NODE_ENV=production node ./build/popcorn-api.js",
"test": "npm run test-dredd && npm run test-mocha",
"test-dredd": "cross-env NODE_ENV=test babel-node ./node_modules/dredd/bin/dredd",
"test-mocha": "cross-env NODE_ENV=test nyc -r=lcov -r=text mocha --exit --recursive --timeout 10000"
},
"bin": {
"popcorn-api": "./build/popcorn-api.js"
},
"engines": {
"node": ">=7.10.1"
},
"main": "./build/popcorn-api.js",
"module": "./build/popcorn-api.esm.js",
"repository": {
"type": "git",
"url": "https://github.com/popcorn-official/popcorn-api.git"
},
"files": [
"./build/**"
]
}