-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
21 lines (21 loc) · 888 Bytes
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
{
"name": "cy-docker-multistage",
"version": "1.0.0",
"private": true,
"scripts": {
"build-dockerfile": "docker build . -f Dockerfile -t cy-test --no-cache",
"build-dockerfile-1": "docker build . -f Dockerfile.1 -t cy-test --no-cache",
"build-dockerfile-1.10.0": "docker build . -f Dockerfile.1.10.0 -t cy-test --no-cache",
"build-dockerfile-1.11.0": "docker build . -f Dockerfile.1.11.0 -t cy-test --no-cache",
"build-dockerfile-1.11.1": "docker build . -f Dockerfile.1.11.1 -t cy-test --no-cache",
"build-dockerfile-1.12.0": "docker build . -f Dockerfile.1.12.0 -t cy-test --no-cache",
"test": "docker run -it --rm cy-test npx cypress run",
"test:chromium": "docker run -it --rm cy-test npx cypress run -b chromium"
},
"author": "Mike McCready",
"license": "MIT",
"description": "",
"devDependencies": {
"cypress": "^13.16.1"
}
}