forked from naughty-doge/stremio-porn
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
89 lines (89 loc) · 3.29 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
{
"name": "stremio-porn",
"version": "0.0.4",
"description": "Stremio addon that provides videos and webcam streams from various porn sites",
"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": "rimraf dist/**/* && babel src -d dist --source-maps",
"docker-start": "cross-env-shell STREMIO_PORN_PORT?=80 docker run --rm -p $STREMIO_PORN_PORT:$STREMIO_PORN_PORT -e NODE_ENV -e STREMIO_PORN_ID -e STREMIO_PORN_ENDPOINT -e STREMIO_PORN_PORT -e STREMIO_PORN_EMAIL -e STREMIO_PORN_CACHE -e STREMIO_PORN_PROXY --name=stremio-porn stremio-porn",
"docker-dev": "cross-env-shell NODE_ENV=development STREMIO_PORN_PORT?=80 docker run --rm -p $STREMIO_PORN_PORT:$STREMIO_PORN_PORT -e NODE_ENV -e STREMIO_PORN_ID -e STREMIO_PORN_ENDPOINT -e STREMIO_PORN_PORT -e STREMIO_PORN_EMAIL -e STREMIO_PORN_CACHE -e STREMIO_PORN_PROXY --name=stremio-porn stremio-porn",
"docker-prod": "cross-env-shell NODE_ENV=production STREMIO_PORN_PORT?=80 docker run --rm -p $STREMIO_PORN_PORT:$STREMIO_PORN_PORT -e NODE_ENV -e STREMIO_PORN_ID -e STREMIO_PORN_ENDPOINT -e STREMIO_PORN_PORT -e STREMIO_PORN_EMAIL -e STREMIO_PORN_CACHE -e STREMIO_PORN_PROXY --name=stremio-porn stremio-porn",
"docker-stop": "docker stop stremio-porn",
"docker-build": "docker build -t stremio-porn .",
"test-unit": "jest --testNamePattern=\"^(?!.*@integration).*$\"",
"test-integration": "jest --testNamePattern=\"^.*@integration.*$\"",
"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",
"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",
"rimraf": "^2.6.2"
},
"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",
"got": "^8.3.0",
"http-proxy-agent": "^2.1.0",
"https-proxy-agent": "^2.2.1",
"serve-static": "^1.13.2",
"stremio-addons": "^2.8.14",
"xml-js": "^1.6.2"
}
}