-
Notifications
You must be signed in to change notification settings - Fork 9
/
package.json
78 lines (78 loc) · 2.14 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
{
"name": "@forad/puppeteer-humanize",
"version": "1.1.4",
"description": "Humanization functions for Puppeteer.",
"private": false,
"keywords": [
"puppeteer",
"puppeteer-extra",
"humanize",
"antidetect",
"scraping",
"bots"
],
"homepage": "https://github.com/force-adverse/puppeteer-humanize",
"bugs": "https://github.com/force-adverse/puppeteer-humanize/issues",
"repository": "https://github.com/force-adverse/puppeteer-humanize",
"license": "MIT",
"author": "force-adverse",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"files": [
"lib",
"lib/index.js",
"lib/start.js"
],
"scripts": {
"clean": "rimraf lib",
"build": "run-s clean && run-s lint && tsc",
"depcheck": "dependency-check ./package.json --verbose --ignore-module \"@types/*\" --nodev",
"lint": "eslint src --ext .ts --fix && prettier --write src",
"sort": "sort-package-json",
"test": "mocha \"test/**/*.test.ts\" --exit",
"upgrade": "ncu -u --packageFile package.json && run-s sort",
"preinstall": "npx only-allow pnpm",
"prepublish": "run-s build"
},
"dependencies": {
"debug": "^4.3.2",
"mersenne-twister": "^1.1.0",
"tslib": "^2.3.0",
"zod": "^3.7.1",
"puppeteer-core": "^10.2.0"
},
"devDependencies": {
"@rushstack/eslint-config": "^2.4.0",
"@types/app-root-path": "^1.2.4",
"@types/chai": "^4.2.21",
"@types/debug": "^4.1.7",
"@types/mersenne-twister": "^1.1.2",
"@types/mocha": "^9.0.0",
"@types/node": "^16.4.13",
"@types/sinon": "^10.0.2",
"@typescript-eslint/eslint-plugin": "^4.29.0",
"@typescript-eslint/parser": "^4.29.0",
"app-root-path": "^3.0.0",
"chai": "^4.3.4",
"esbuild": "^0.12.19",
"eslint": "^7.32.0",
"eslint-plugin-simple-import-sort": "^7.0.0",
"mocha": "^9.0.3",
"npm-run-all": "^4.1.5",
"prettier": "^2.3.2",
"rimraf": "^3.0.2",
"sinon": "^11.1.2",
"sort-package-json": "^1.50.0",
"ts-node": "^10.1.0",
"typescript": "4.3.5"
},
"optionalDependencies": {
"fsevents": "^2.3.2"
},
"engines": {
"node": ">=14"
},
"volta": {
"node": "16.5.0"
}
}