-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
49 lines (49 loc) · 1.33 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
{
"name": "legendastv-crawler",
"version": "1.0.0",
"description": "Busca informações de legendas no site http://legendas.tv",
"main": "index.js",
"scripts": {
"start": "node -r dotenv/config index.js",
"search": "node -r dotenv/config src/search.js",
"login": "node -r dotenv/config src/login.js",
"test": "jest --setupFiles dotenv/config"
},
"keywords": [
"crawler",
"legendas"
],
"author": "jamesgsilva",
"license": "MIT",
"bugs": {
"url": "https://github.com/jamesgsilva/legendastv-crawler/issues"
},
"homepage": "https://github.com/jamesgsilva/legendastv-crawler",
"repository": {
"type": "git",
"url": "git://github.com/jamesgsilva/legendastv-crawler.git"
},
"dependencies": {
"agentkeepalive": "^4.1.3",
"boxen": "^4.2.0",
"cheerio": "^1.0.0-rc.3",
"commander": "^6.2.0",
"debug": "^4.2.0",
"got": "^11.8.0",
"ora": "^5.1.0",
"string-similarity": "^4.0.2",
"tough-cookie": "^4.0.0",
"user-agents": "^1.0.559"
},
"devDependencies": {
"dotenv": "^8.2.0",
"eslint": "^7.12.0",
"eslint-config-standard": "^15.0.0",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-jest": "^24.1.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-standard": "^4.0.2",
"jest": "^26.6.1"
}
}