This repository has been archived by the owner on Mar 21, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
63 lines (63 loc) · 1.5 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
{
"name": "harke-puppeteer",
"type": "module",
"version": "0.0.0",
"main": "./src/cli.ts",
"exports": {
".": "./src/cli.ts"
},
"repository": {
"type": "git",
"url": "https://github.com/algorithmwatch/harke-puppeteer.git"
},
"author": "AlgorithmWatch",
"license": "MIT",
"scripts": {
"dev:main": "nodemon",
"cli": "node --loader ts-node/esm --es-module-specifier-resolution=node ./src/cli.ts",
"build": "rimraf ./build && tsc"
},
"bin": {
"harke-cli": "node --loader ts-node/esm --es-module-specifier-resolution=node ./src/cli.ts"
},
"dependencies": {
"@algorithmwatch/harke": "../harke",
"lowdb": "^3.0.0",
"meow": "^9.0.0",
"puppeteer": "9",
"puppeteer-extra": "^3.1.18",
"puppeteer-extra-plugin-stealth": "^2.7.8",
"ts-node": "^10.4.0"
},
"devDependencies": {
"@types/jest": "^26.0.23",
"@types/node": "^15.0.1",
"@typescript-eslint/eslint-plugin": "^4.17.0",
"@typescript-eslint/parser": "^4.17.0",
"eslint": "^7.25.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-jest": "^24.3.6",
"jest": "^26.6.3",
"nodemon": "^2.0.7",
"prettier": "^2.2.1",
"rimraf": "^3.0.2",
"ts-jest": "^26.5.3",
"typescript": "^4.2.3"
},
"prettier": {
"overrides": [
{
"files": [
".prettierrc",
".babelrc",
".eslintrc"
],
"options": {
"parser": "json"
}
}
],
"singleQuote": true,
"trailingComma": "all"
}
}