-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
39 lines (39 loc) · 993 Bytes
/
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
{
"name": "playwright-fixtures",
"version": "0.3.5",
"description": "Wrap your tests with Playwright-like test fixtures in node & browsers",
"keywords": [
"test",
"fixture",
"playwright",
"folio"
],
"bugs": "https://github.com/PaperStrike/Pjax/issues",
"license": "ISC",
"author": "PaperStrike",
"type": "module",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"repository": "github:PaperStrike/playwright-fixtures",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"prepare": "tsc"
},
"files": [
"dist",
"src",
"tsconfig.json",
"*.config.*",
".eslintrc.*",
"CHANGELOG.*"
],
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^4.29.3",
"@typescript-eslint/parser": "^4.29.3",
"eslint": "^7.32.0",
"eslint-config-airbnb-base": "^14.2.1",
"eslint-config-airbnb-typescript": "^14.0.0",
"eslint-plugin-import": "^2.24.2",
"typescript": "^4.4.2"
}
}