This repository was archived by the owner on Apr 1, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
51 lines (51 loc) · 1.35 KB
/
package.json
File metadata and controls
51 lines (51 loc) · 1.35 KB
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
{
"name": "sc2mapster-crawler",
"version": "0.1.4",
"description": "",
"author": {
"name": "Talv",
"url": "https://github.com/Talv"
},
"bugs": {
"url": "https://github.com/SC2Mapster/sc2mapster-crawler/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/SC2Mapster/sc2mapster-crawler.git"
},
"license": "MIT",
"main": "lib/src/main.js",
"types": "lib/src/main.d.ts",
"dependencies": {
"cheerio": "^1.0.0-rc.3",
"puppeteer": "^2.0.0",
"puppeteer-extra": "^3.1.7",
"puppeteer-extra-plugin-recaptcha": "^3.1.8",
"puppeteer-extra-plugin-stealth": "^2.4.5",
"request": "^2.87.0",
"request-promise-native": "^1.0.8",
"winston": "^3.2.1"
},
"devDependencies": {
"@types/cheerio": "^0.22.15",
"@types/node": "^12.7.11",
"@types/puppeteer": "^2.0.0",
"@types/request": "^2.47.0",
"@types/request-promise-native": "^1.0.17",
"mysql": "^2.15.0",
"reflect-metadata": "^0.1.12",
"source-map-support": "^0.5.16",
"sugar": "^2.0.4",
"ts-node": "^8.5.4",
"typeorm": "^0.2.7",
"typescript": "^3.7.3"
},
"scripts": {
"clean": "rm -rf lib/*",
"sync": "ts-node src/sync.ts",
"test": "ts-node tests/test.ts",
"build": "rm -rf lib/* && tsc -p .",
"build:watch": "tsc -p . -w",
"typeorm": "ts-node ./node_modules/.bin/typeorm"
}
}