-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
51 lines (51 loc) · 1.56 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
{
"name": "puppeteer-botbase-ts",
"version": "2.0.5",
"description": "",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"test": "NODE_ENV=test jest --testTimeout=50000 --runInBand tests/*",
"test:tdd": "NODE_ENV=test jest --bail --colors --detectOpenHandles --runInBand",
"test:ci": "NODE_ENV=test jest --testPathIgnorePatterns \"tests/*botbase*\" \"tests/*helper-puppeteer*\" --detectLeaks --runInBand --reporters=default",
"lint": "eslint src",
"lint:fix": "npm run lint -- --fix",
"prebuild": "rm -rf dist/*",
"build": "tsc -p tsconfig.base.json",
"build-watch": "tsc --watch"
},
"repository": {
"type": "git",
"url": "git+https://github.com/josep11/puppeteer-botbase-ts.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/josep11/puppeteer-botbase-ts/issues"
},
"homepage": "https://github.com/josep11/puppeteer-botbase-ts#readme",
"dependencies": {
"deepmerge": "^4.3.1",
"luxon": "^3.5.0",
"user-agents": "^1.1.312"
},
"optionalDependencies": {
"puppeteer-core": "^23.2.1"
},
"devDependencies": {
"@types/jest": "^29.5.12",
"@types/luxon": "^3.4.2",
"@types/node": "^22.5.1",
"@types/user-agents": "^1.0.4",
"@typescript-eslint/eslint-plugin": "^8.3.0",
"@typescript-eslint/parser": "^8.3.0",
"eslint": "^9.9.1",
"eslint-plugin-prettier": "^5.2.1",
"globals": "^15.9.0",
"jest": "^29.7.0",
"puppeteer": "^23.2.1",
"puppeteer-core": "^23.2.1",
"ts-jest": "^29.2.5",
"typescript": "^5.5.4"
}
}