-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
45 lines (45 loc) · 1.09 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": "playwright-utilities",
"version": "0.0.0-development",
"description": "Playwright utilities",
"keywords": [
"playwright",
"utilities"
],
"repository": {
"type": "git",
"url": "https://github.com/punkpeye/playwright-utilities"
},
"license": "BSD-3-Clause",
"main": "./dist/utilities.js",
"types": "./dist/utilities.d.ts",
"scripts": {
"test": "playwright test",
"start": "tsx server.ts",
"build": "rm -fr ./dist && tsc",
"lint": "eslint . && prettier --check . && tsc --noEmit"
},
"files": [
"dist",
"LICENSE"
],
"devDependencies": {
"@fastify/static": "^6.5.0",
"@playwright/test": "^1.25.1",
"@semantic-release/commit-analyzer": "^9.0.2",
"@semantic-release/github": "^8.0.5",
"@semantic-release/npm": "^9.0.1",
"@types/jest": "^28.1.8",
"@types/node": "^18.7.13",
"@typescript-eslint/eslint-plugin": "^5.35.1",
"eslint": "^8.22.0",
"fastify": "^4.5.2",
"husky": "^8.0.1",
"prettier": "^2.7.1",
"tsx": "^3.8.2",
"typescript": "^4.7.4"
},
"engines": {
"node": ">=18.0"
}
}