-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
86 lines (86 loc) · 3.35 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
{
"name": "stremio-zooqle",
"version": "0.0.2",
"description": "Stremio addon that provides movies and series from Zooqle torrent indexer",
"author": "Naughty Doge <[email protected]>",
"scripts": {
"start": "node dist/index.js",
"dev": "cross-env NODE_ENV=development node --inspect dist/index.js",
"prod": "cross-env NODE_ENV=production node dist/index.js",
"build": "del-cli dist/** && babel src -d dist --source-maps",
"docker-start": "cross-env-shell STREMIO_ZOOQLE_PORT?=80 docker run --rm -p $STREMIO_ZOOQLE_PORT:$STREMIO_ZOOQLE_PORT -e NODE_ENV -e STREMIO_ZOOQLE_ID -e STREMIO_ZOOQLE_ENDPOINT -e STREMIO_ZOOQLE_PORT -e STREMIO_ZOOQLE_EMAIL -e STREMIO_ZOOQLE_CACHE -e STREMIO_ZOOQLE_PROXY -e STREMIO_ZOOQLE_USERNAME -e STREMIO_ZOOQLE_PASSWORD --name=stremio-zooqle stremio-zooqle",
"docker-dev": "cross-env-shell NODE_ENV=development STREMIO_ZOOQLE_PORT?=80 docker run --rm -p $STREMIO_ZOOQLE_PORT:$STREMIO_ZOOQLE_PORT -e NODE_ENV -e STREMIO_ZOOQLE_ID -e STREMIO_ZOOQLE_ENDPOINT -e STREMIO_ZOOQLE_PORT -e STREMIO_ZOOQLE_EMAIL -e STREMIO_ZOOQLE_CACHE -e STREMIO_ZOOQLE_PROXY -e STREMIO_ZOOQLE_USERNAME -e STREMIO_ZOOQLE_PASSWORD --name=stremio-zooqle stremio-zooqle",
"docker-prod": "cross-env-shell NODE_ENV=production STREMIO_ZOOQLE_PORT?=80 docker run --rm -p $STREMIO_ZOOQLE_PORT:$STREMIO_ZOOQLE_PORT -e NODE_ENV -e STREMIO_ZOOQLE_ID -e STREMIO_ZOOQLE_ENDPOINT -e STREMIO_ZOOQLE_PORT -e STREMIO_ZOOQLE_EMAIL -e STREMIO_ZOOQLE_CACHE -e STREMIO_ZOOQLE_PROXY -e STREMIO_ZOOQLE_USERNAME -e STREMIO_ZOOQLE_PASSWORD --name=stremio-zooqle stremio-zooqle",
"docker-stop": "docker stop stremio-zooqle",
"docker-build": "docker build -t stremio-zooqle .",
"test": "jest",
"precommit": "lint-staged"
},
"lint-staged": {
"(src|tests)/**/*.js": [
"eslint --fix",
"git add"
]
},
"jest": {
"testEnvironment": "node",
"testRegex": "tests/.*\\.test\\.js$",
"forceExit": true
},
"babel": {
"presets": [
[
"@babel/preset-env",
{
"targets": {
"node": "6.11.5"
}
}
]
],
"plugins": [
"@babel/plugin-proposal-class-properties",
"@babel/plugin-syntax-object-rest-spread",
[
"@babel/plugin-proposal-object-rest-spread",
{
"useBuiltIns": true
}
]
]
},
"engines": {
"node": ">=6.11.5"
},
"devDependencies": {
"@babel/cli": "7.0.0-beta.46",
"@babel/core": "7.0.0-beta.46",
"@babel/plugin-proposal-class-properties": "7.0.0-beta.46",
"@babel/plugin-proposal-object-rest-spread": "7.0.0-beta.46",
"@babel/plugin-syntax-object-rest-spread": "7.0.0-beta.46",
"@babel/preset-env": "7.0.0-beta.46",
"babel-core": "^7.0.0-bridge.0",
"babel-eslint": "^8.2.3",
"babel-jest": "^22.4.3",
"del-cli": "^1.1.0",
"eslint": "^4.18.1",
"eslint-plugin-import": "^2.11.0",
"eslint-plugin-jest": "^21.15.1",
"husky": "^0.14.3",
"jest": "^22.4.3",
"lint-staged": "^7.0.5"
},
"dependencies": {
"bottleneck": "^2.3.1",
"cache-manager": "^2.9.0",
"cache-manager-redis-store": "^1.4.0",
"chalk": "^2.4.1",
"cheerio": "^1.0.0-rc.2",
"cross-env-default": "^5.1.3-1",
"magnet-uri": "^5.1.7",
"needle": "^2.2.1",
"serve-static": "^1.13.2",
"stremio-addons": "^2.8.14",
"torrent-name-parser": "^0.6.5"
}
}