forked from adobecom/nala
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
38 lines (38 loc) · 1.18 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
{
"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"
},
"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": {
"@playwright/test": "^1.31.1",
"axios": "^1.3.4"
},
"devDependencies": {
"@babel/core": "7.21.0",
"@babel/eslint-parser": "7.19.1",
"eslint": "8.34.0",
"eslint-config-airbnb-base": "15.0.0",
"eslint-plugin-import": "2.27.5"
}
}