-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
76 lines (76 loc) · 2.21 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
{
"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 lib",
"prepare": "husky install"
},
"dependencies": {
"@aws-sdk/client-device-farm": "^3.623.0",
"@types/pngjs": "^6.0.4",
"@wdio/globals": "^9.7.0",
"@wdio/types": "^9.6.3",
"get-stream": "^6.0.1",
"lodash": "^4.17.21",
"p-retry": "^4.6.2",
"pixelmatch": "^5.3.0",
"pngjs": "^6.0.0",
"wait-on": "^7.2.0",
"webdriverio": "^9.7.0"
},
"devDependencies": {
"@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.6",
"eslint": "^8.26.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-header": "^3.1.1",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-unicorn": "^44.0.2",
"http-server": "^14.1.1",
"husky": "^8.0.1",
"lint-staged": "^13.0.3",
"npm-run-all": "^4.1.5",
"prettier": "^2.7.1",
"typescript": "^5.7.3",
"vitest": "^3.0.6"
},
"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"
]
}
}