-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
42 lines (42 loc) · 1.58 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
{
"name": "aap-visual",
"version": "0.0.1",
"description": "Visual tests for the Ansible Automation Platform",
"main": "index.js",
"scripts": {
"cy:open": "cypress open",
"cy:open:prod-beta": "cypress open --env configFile=prod-beta",
"cy:run": "cypress run --record --browser chrome --headless --tag local,chrome,prod",
"cy:run:prod-beta": "cypress run --record --browser chrome --headless --tag local,chrome,prod-beta --env configFile=prod-beta",
"cy:gha": "cypress run --record --browser chrome --tag gha,prod,chrome --parallel",
"cy:gha:prod-beta": "cypress run --record --browser chrome --tag gha,chrome,prod-beta --env configFile=prod-beta --parallel",
"lint": "eslint '*.js' '**/**/*.js'",
"precommit": "npm run lint",
"prettier": "prettier --print-width 100 --no-semi --single-quote --trailing-comma es5 --write \"cypress/**/*.js\"",
"prettier-check": "prettier --check --print-width 100 --no-semi --single-quote --trailing-comma es5 \"cypress/**/*.js\""
},
"repository": {
"type": "git",
"url": "git+https://github.com/unlikelyzero/aap-visual.git"
},
"keywords": [
"cypress",
"ansible",
"applitools"
],
"author": "John Hill <[email protected]",
"license": "MIT",
"bugs": {
"url": "https://github.com/unlikelyzero/aap-visual/issues"
},
"homepage": "https://github.com/unlikelyzero/aap-visual#readme",
"dependencies": {
"@applitools/eyes-cypress": "^3.20.0",
"cypress": "^6.6.0"
},
"devDependencies": {
"eslint": "^7.21.0",
"eslint-plugin-cypress": "2.11.2",
"prettier": "2.2.1"
}
}