-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
64 lines (64 loc) · 1.91 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
53
54
55
56
57
58
59
60
61
62
63
64
{
"name": "@testla/screenplay-playwright",
"version": "1.7.0",
"description": "Implementation of the Playwright abilities, actions and questions.",
"main": "index.js",
"types": "index.d.ts",
"commitHooks": false,
"scripts": {
"build": "rm -r lib || true && tsc --project ./tsconfig-build.json",
"test": "npx playwright test __tests__ --config=__tests__/playwright.config.ts",
"test:api": "npx playwright test __tests__/api.spec.ts --config=__tests__/playwright.config.ts",
"test:web": "npx playwright test __tests__/web.spec.ts --config=__tests__/playwright.config.ts",
"lint:ts": "tsc --noEmit",
"lint:js": "eslint . --cache",
"lint": "npm run lint:js && npm run lint:ts",
"prerelease": "npm run lint && npm run build && npm run test",
"release": "node scripts/release.js",
"preversion": "npm run lint"
},
"repository": {
"type": "git",
"url": "git+https://github.com/testla-project/testla-screenplay-playwright-js.git"
},
"keywords": [
"playwright",
"screenplay",
"testla",
"testing",
"test",
"tdd",
"bdd",
"e2e"
],
"author": "",
"license": "MIT",
"bugs": {
"url": "https://github.com/testla-project/testla-screenplay-playwright-js/issues"
},
"homepage": "https://github.com/testla-project/testla-screenplay-playwright-js#readme",
"devDependencies": {
"@types/node": "^17.0.23",
"@typescript-eslint/eslint-plugin": "^5.18.0",
"@typescript-eslint/parser": "^5.18.0",
"eslint": "^8.12.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-jsx-a11y": "^6.5.1",
"eslint-plugin-react": "^7.29.4",
"typescript": "^4.6.3",
"v8-to-istanbul": "^9.0.1"
},
"peerDependencies": {
"@playwright/test": "^1.38.0"
},
"dependencies": {
"@testla/screenplay": "^1.1.0"
},
"engines": {
"node": ">=18.x.x"
},
"publishConfig": {
"access": "public"
}
}