-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
45 lines (45 loc) · 1.39 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
{
"name": "@teocns/puppeteer-middlewares",
"version": "1.0.2",
"description": "A collection of middlewares for Puppeteer PageEvent",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"repository": "https://github.com/teocns/puppeteer-middlewares",
"author": "teocns",
"scripts": {
"clean-dist": "rm -rf dist",
"test": "jest",
"generate-d-ts": "api-extractor run --local --verbose",
"tsc-cjs": "tsc -b src/tsconfig.cjs.json",
"tsc-esm": "tsc -b src/tsconfig.esm.json",
"lint": "eslint . --ext .ts -f",
"lint:fix": "npm run lint -- --fix",
"build": "npm run clean-dist && tsc --build tsconfig.json --force",
"clean": "rm -rf ./node-modules && rm -f tsconfig.tsbuildinfo && rm -f",
"compile": "npm run clean && npm install && npm run build"
},
"license": "Apache 2.0",
"dependencies": {
"@testdeck/mocha": "^0.2.1",
"chai": "^4.3.6",
"got-cjs": "^12.3.1",
"http-proxy-agent": "*",
"mocha": "^10.1.0",
"nyc": "^15.1.0",
"puppeteer": "^19.1.0",
"socks-proxy-agent": "*",
"tough-cookie": "*",
"ts-mixer": "^6.0.1",
"ts-mockito": "^2.6.1",
"ts-node": "^10.9.1"
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^5.41.0",
"@typescript-eslint/parser": "^5.41.0",
"eslint": "^8.26.0",
"jest": "^29.2.2",
"jest-puppeteer": "^6.1.1",
"rimraf": "^3.0.2",
"ts-jest": "^29.0.3"
}
}