-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
81 lines (81 loc) · 2.32 KB
/
package.json
File metadata and controls
81 lines (81 loc) · 2.32 KB
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
{
"name": "@cloudscape-design/browser-test-tools",
"version": "3.0.0",
"repository": {
"type": "git",
"url": "https://github.com/cloudscape-design/browser-test-tools.git"
},
"homepage": "https://cloudscape.design",
"files": [
"*.js",
"*.d.ts",
"browser-scripts",
"browsers",
"image-utils",
"page-objects"
],
"scripts": {
"clean": "rm -rf build/screenshots coverage lib && mkdir -p build/screenshots",
"prestart": "npm run clean && npm run build",
"start": "node demo",
"test": "run-p -r start-http-server run-tests",
"run-tests": "wait-on http://localhost:9615 && vitest run",
"start-http-server": "http-server test/fixtures --port=9615 -a localhost --silent",
"lint": "eslint --ext=ts,js --ignore-path .gitignore .",
"prebuild": "npm run clean",
"build": "tsc",
"postbuild": "cp package.json README.md LICENSE NOTICE lib",
"prepare": "husky"
},
"dependencies": {
"@aws-sdk/client-device-farm": "^3.996.0",
"@types/pngjs": "^6.0.4",
"@wdio/globals": "^9.23.0",
"@wdio/types": "^9.24.0",
"get-stream": "^6.0.1",
"lodash": "^4.18.1",
"p-retry": "^4.6.2",
"pixelmatch": "^5.3.0",
"pngjs": "^6.0.0",
"wait-on": "^8.0.3",
"webdriverio": "^9.24.0"
},
"devDependencies": {
"@tony.ganchev/eslint-plugin-header": "^3.3.1",
"@types/lodash": "^4.14.186",
"@types/node": "^18.0.0",
"@types/pixelmatch": "^5.2.4",
"@types/wait-on": "^5.3.4",
"@typescript-eslint/eslint-plugin": "^5.41.0",
"@typescript-eslint/parser": "^5.41.0",
"@vitest/coverage-istanbul": "^3.0.7",
"eslint": "^8.26.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-unicorn": "^44.0.2",
"glob": "^10.5.0",
"http-server": "^14.1.1",
"husky": "^9.1.7",
"lint-staged": "^13.0.3",
"npm-run-all": "^4.1.5",
"prettier": "^2.7.1",
"puppeteer-core": "^22.15.0",
"typescript": "^5.7.3",
"vitest": "^3.0.7"
},
"exports": {
"./chrome-launcher": "./chrome-launcher.js",
"./image-utils": "./image-utils/index.js",
"./page-objects": "./page-objects/index.js",
"./use-browser": "./use-browser.js",
"./browser": "./browser.js"
},
"lint-staged": {
"*.{js,ts}": [
"eslint --fix"
]
},
"overrides": {
"glob": "^10.5.0"
}
}