-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
87 lines (87 loc) · 2.63 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
{
"name": "puppeteer-extends",
"version": "1.5.0",
"description": "Easy manage and instance a puppeteer using a singleton pattern. Minimal configuration implemented for install and use.",
"homepage": "https://github.com/devalexanderdaza/puppeteer-extends",
"bugs": {
"url": "https://github.com/devalexanderdaza/puppeteer-extends/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/devalexanderdaza/puppeteer-extends.git"
},
"license": "Apache-2.0",
"author": "Alexander Daza <[email protected]> (https://github.com/devalexanderdaza)",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist"
],
"scripts": {
"prepublishOnly": "npm run build",
"ava": "ava -v",
"clean": "rimraf --no-glob dist",
"build": "tsc --build --incremental --verbose .",
"coverage": "nyc report --reporter=json > coverage/coverage.json && codecov",
"lint": "eslint --ext ts . package.json",
"lint:fix": "eslint --ext ts --fix . package.json",
"prettier": "prettier --list-different .",
"prettier:fix": "prettier --write .",
"docs": "typedoc src/index.ts",
"test": "nyc ava",
"prepare": "husky install"
},
"dependencies": {
"cloudscraper": "^4.6.0",
"folder-logger": "^1.0.9",
"puppeteer": "^5.0.0",
"puppeteer-extra": "^3.1.12",
"puppeteer-extra-plugin-stealth": "^2.4.12",
"request": "^2.88.2"
},
"devDependencies": {
"@commitlint/cli": "^13.2.1",
"@commitlint/config-conventional": "^13.2.0",
"@ericcrosson/eslint-config": "^2.1.3",
"@ericcrosson/prettier-config": "^1.0.0",
"@semantic-release/changelog": "^6.0.1",
"@semantic-release/git": "^10.0.1",
"@types/node": "^14.14.17",
"@types/puppeteer": "^3.0.1",
"@typescript-eslint/eslint-plugin": "^5.2.0",
"@typescript-eslint/parser": "^5.2.0",
"ava": "^3.14.0",
"ava-fast-check": "^4.0.0",
"codecov": "^3.8.1",
"eslint": "^7.16.0",
"eslint-config-prettier": "^6.6.0",
"eslint-plugin-ava": "^10.2.0",
"eslint-plugin-fp-ts": "^0.2.1",
"eslint-plugin-import": "^2.23.4",
"eslint-plugin-json-format": "^2.0.1",
"eslint-plugin-prettier": "^3.3.1",
"eslint-plugin-security": "^1.4.0",
"fast-check": "^2.10.0",
"husky": "^7.0.4",
"lint-staged": "^10.5.3",
"nyc": "^15.1.0",
"pre-commit": "^1.2.2",
"prettier": "2.2.1",
"rimraf": "^3.0.2",
"ts-node": "^10.3.0",
"typedoc": "^0.22.7",
"typescript": "^4.4.4"
},
"ava": {
"extensions": [
"ts"
],
"files": [
"!dist/**/*.d.ts",
"test/**/test-*.ts"
],
"require": [
"ts-node/register"
]
}
}