-
Notifications
You must be signed in to change notification settings - Fork 9
/
package.json
89 lines (89 loc) · 3 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
79
80
81
82
83
84
85
86
87
88
89
{
"name": "playwright-testing-library",
"version": "0.0.0-semantically-released",
"description": "playwright + dom-testing-library",
"main": "./dist/index.js",
"scripts": {
"build": "run-s clean build:testing-library build:source",
"build:source": "tsc",
"build:testing-library": "rollup -c",
"ci-after-success": "hover-scripts ci-after-success",
"clean": "rimraf dist/*",
"commit-msg": "hover-scripts commit-msg",
"lint": "hover-scripts lint",
"pre-commit": "hover-scripts pre-commit --no-toc",
"prepare": "husky install",
"prepare:playwright-test": "run-s prepare:playwright-test:package prepare:playwright-test:imports build:source prepare:playwright-test:entries",
"prepare:playwright-test:entries": "generate-export-aliases",
"prepare:playwright-test:imports": "./playwright-test/prepare-package.js",
"prepare:playwright-test:package": "jscodeshift -t ./playwright-test/rename-imports.ts --extensions=ts --parser=ts ./lib",
"prepublishOnly": "npm run build",
"start:standalone": "hover-scripts test",
"test": "run-s build:testing-library test:standalone test:fixture",
"test:legacy": "run-s build:testing-library test:standalone test:fixture:legacy",
"test:fixture": "playwright test",
"test:fixture:legacy": "playwright test test/fixture/element-handles.test.ts",
"test:fixture:locator": "playwright test test/fixture/locators.test.ts",
"test:standalone": "hover-scripts test --no-watch",
"test:types": "tsc --noEmit"
},
"repository": {
"type": "git",
"url": "https://github.com/hoverinc/playwright-testing-library.git"
},
"author": "Patrick Hulce <patrick.hulce@gmail.com>, Kerry Gould <kerry@hover.to>, Jamie Rolfs <jamie.rolfs@hover.to>",
"license": "MIT",
"homepage": "https://github.com/hoverinc/playwright-testing-library#readme",
"bugs": {
"url": "https://github.com/hoverinc/playwright-testing-library/issues"
},
"keywords": [
"playwright",
"dom-testing-library",
"testing-library",
"testing",
"utility"
],
"config": {
"exportAliases": {
"fixture": "./dist/fixture"
}
},
"dependencies": {
"@testing-library/dom": "^7.31.2",
"wait-for-expect": "^3.0.2"
},
"devDependencies": {
"@hover/javascript": "^6.53.0",
"@playwright/test": "^1.25.0",
"@rollup/plugin-commonjs": "^21.0.0",
"@rollup/plugin-node-resolve": "^13.0.5",
"@rollup/plugin-replace": "^4.0.0",
"@types/jest": "^27.0.2",
"@types/jscodeshift": "^0.11.2",
"generate-export-aliases": "^1.1.0",
"husky": "^8.0.1",
"jscodeshift": "^0.14.0",
"npm-run-all": "^4.1.5",
"playwright": "^1.25.0",
"rimraf": "^3.0.2",
"rollup": "^2.58.0",
"setimmediate": "^1.0.5",
"typescript": "^4.4.3"
},
"peerDependencies": {
"@playwright/test": "^1.12.0",
"playwright": "^1.12.0"
},
"peerDependenciesMeta": {
"playwright": {
"optional": true
},
"@playwright/test": {
"optional": true
}
},
"engines": {
"node": ">=12"
}
}