-
Notifications
You must be signed in to change notification settings - Fork 12
/
package.json
78 lines (78 loc) · 2.29 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
65
66
67
68
69
70
71
72
73
74
75
76
77
78
{
"name": "playwright-fluent",
"version": "1.61.0",
"description": "Fluent API around playwright",
"main": "lib/index.js",
"typings": "lib/index.d.ts",
"files": [
"lib",
"!*.test.js",
"!*.test.d.ts"
],
"scripts": {
"build-device-names": "ts-node ./src/devices/device-names-builder.ts",
"build-device-descriptors": "ts-node ./src/devices/device-descriptors-builder.ts",
"build": "rimraf lib && npm run format && npm run lint && tsc",
"check-format": "prettier --list-different \"src/**/*.ts\" ",
"format": "prettier --log-level warn --list-different --write \"src/**/*.ts\" ",
"install-peers": "npm install --no-save playwright@latest",
"jest-init": "jest --init",
"lint-fix": "npm run lint -- --fix",
"lint": "eslint . --ext .js,.ts --format visualstudio --no-color --max-warnings 10 --report-unused-disable-directives",
"package": "rimraf package && rm -f playwright-fluent*.tgz && npm pack",
"test": "jest --config=jest.config.js",
"tsc-init": "tsc --init",
"tsc": " tsc --listEmittedFiles"
},
"repository": {
"type": "git",
"url": "git+https://github.com/hdorgeval/playwright-fluent.git"
},
"engines": {
"node": ">=12"
},
"author": "Henri d'Orgeval",
"license": "MIT",
"bugs": {
"url": "https://github.com/hdorgeval/playwright-fluent/issues"
},
"keywords": [
"playwright",
"fluent-api",
"e2e",
"test-automation",
"test-runner"
],
"homepage": "https://github.com/hdorgeval/playwright-fluent#readme",
"reveal": true,
"devDependencies": {
"@types/debug": "4.1.8",
"@types/jest": "29.5.3",
"@types/node": "20.4.5",
"@typescript-eslint/eslint-plugin": "6.4.0",
"@typescript-eslint/parser": "6.4.0",
"eslint": "8.47.0",
"eslint-config-prettier": "9.0.0",
"eslint-plugin-import": "2.28.0",
"eslint-plugin-prettier": "5.0.0",
"jest": "29.6.1",
"prettier": "3.0.1",
"rimraf": "5.0.1",
"simple-fake-server": "3.4.0",
"ts-jest": "29.1.1",
"ts-node": "10.9.1",
"typescript": "5.1.6"
},
"dependencies": {
"@types/uuid": "9.0.2",
"@types/which": "3.0.0",
"escape-html": "1.0.3",
"is-ci": "3.0.1",
"tslib": "2.6.1",
"uuid": "9.0.0",
"which": "3.0.1"
},
"peerDependencies": {
"playwright": ">= 1.12.0"
}
}