forked from adobecom/nala
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
50 lines (50 loc) · 1.64 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
{
"name": "nala",
"version": "1.0.0",
"description": "Automated E2E & integration testing of Milo-based projects.",
"main": "index.js",
"scripts": {
"test": "npx playwright test",
"test:gui": "npx playwright test --headed",
"test:chrome": "playwright test --project=chromium --headed",
"test:firefox": "playwright test --project=firefox --headed",
"test:safari": "playwright test --project=webkit --headed",
"test:chrome-headless": "playwright test --project=chromium",
"test:firefox-headless": "playwright test --project=firefox",
"test:safari-headless": "playwright test --project=webkit",
"test.sauce.us": "saucectl run --region us-west-1",
"test.sauce.eu": "saucectl run",
"postinstall": "npm update browserstack-node-sdk",
"test:bstack": "npx browserstack-node-sdk playwright test"
},
"repository": {
"type": "git",
"url": "git+https://github.com/adobecom/nala.git"
},
"keywords": [],
"author": "",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/adobecom/nala/issues"
},
"homepage": "https://github.com/adobecom/nala#readme",
"dependencies": {
"@aws-sdk/client-s3": "^3.572.0",
"@aws-sdk/client-sts": "^3.572.0",
"@axe-core/playwright": "^4.7.0",
"@playwright/test": "^1.42",
"axe-html-reporter": "^2.2.3",
"axios": "^1.6.5",
"css": "^3.0.0",
"js-yaml": "^4.1.0"
},
"devDependencies": {
"@babel/core": "7.21.3",
"@babel/eslint-parser": "7.21.3",
"browserstack-node-sdk": "^1.31.24",
"eslint": "8.37.0",
"eslint-config-airbnb-base": "15.0.0",
"eslint-plugin-import": "2.27.5",
"saucectl": "^0.169.0"
}
}