This repository has been archived by the owner on Sep 27, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
64 lines (64 loc) · 1.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
{
"name": "@scaleleap/puppeteer",
"description": "",
"license": "MIT",
"author": {
"name": "Roman Filippov",
"email": "[email protected]",
"url": "https://www.scaleleap.com/"
},
"homepage": "https://github.com/ScaleLeap/puppeteer/#readme",
"version": "1.1.56",
"main": "lib/index.js",
"files": [
"/lib"
],
"scripts": {
"prebuild": "npm run clean",
"build": "tsc --build tsconfig.build.json",
"clean": "rimraf lib",
"dev": "ts-node-dev --respawn --transpileOnly src",
"lint": "eslint --ext ts,js src/",
"lint:fix": "npm run lint -- --fix",
"semantic-release": "npx @scaleleap/semantic-release-config",
"start": "ts-node --transpile-only --pretty test/run",
"test": "jest",
"test:watch": "jest --watchAll"
},
"types": "lib/index.d.ts",
"dependencies": {
"@types/puppeteer-core": "5.4.0",
"chrome-launcher": "0.15.0",
"deepmerge": "4.2.2",
"lodash.memoize": "4.1.2",
"puppeteer-core": "5.5.0",
"puppeteer-extra": "3.2.3",
"puppeteer-extra-plugin-stealth": "2.9.0"
},
"peerDependencies": {
"@scaleleap/config": "2.0.8"
},
"devDependencies": {
"@scaleleap/config": "2.0.8",
"@scaleleap/utils": "1.9.58",
"@types/jest": "27.0.3",
"@types/lodash.memoize": "4.1.6",
"@types/node": "14.18.3",
"danger": "10.8.0",
"jest": "27.4.2",
"rimraf": "3.0.2",
"ts-jest": "27.1.2",
"ts-node": "10.4.0",
"tsconfigs": "5.0.0",
"typescript": "4.5.4"
},
"keywords": [
"puppeteer"
],
"publishConfig": {
"access": "public"
},
"release": {
"extends": "@scaleleap/semantic-release-config"
}
}