-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
52 lines (52 loc) · 1.2 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
{
"name": "playwright-indexeddb",
"version": "1.0.0",
"description": "Access and manipulate IndexedDB within Playwright tests",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"build": "tsc",
"test": "playwright test",
"lint": "eslint . --ext .ts",
"lint:fix": "eslint . --ext .ts --fix",
"format": "prettier --write \"src/**/*.ts\" \"tests/**/*.ts\"",
"prepare": "husky install",
"prepublishOnly": "npm run build"
},
"keywords": [
"playwright",
"testing",
"indexeddb",
"browser",
"database"
],
"author": "",
"license": "MIT",
"devDependencies": {
"@playwright/test": "^1.40.0",
"@types/node": "^20.10.1",
"@typescript-eslint/eslint-plugin": "^6.13.1",
"@typescript-eslint/parser": "^6.13.1",
"eslint": "^8.54.0",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-prettier": "^5.0.1",
"husky": "^8.0.3",
"lint-staged": "^15.1.0",
"prettier": "^3.1.0",
"typescript": "^5.3.2"
},
"peerDependencies": {
"@playwright/test": "^1.40.0"
},
"files": [
"dist",
"README.md",
"LICENSE"
],
"lint-staged": {
"*.ts": [
"eslint --fix",
"prettier --write"
]
}
}