forked from cypress-io/cypress-test-tiny
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
29 lines (29 loc) · 785 Bytes
/
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
{
"name": "cypress-test-tiny",
"version": "1.0.0",
"description": "Small project for quickly testing Cypress.io test runner",
"scripts": {
"cypress:run": "cypress run",
"cypress:open": "cypress open",
"cypress:verify": "cypress verify",
"cypress:version": "cypress version",
"cypress:info": "cypress info",
"cypress:cache:list": "cypress cache list",
"list-videos": "ls -l cypress/videos",
"start": "http-server"
},
"keywords": [],
"author": "Cypress-io",
"license": "ISC",
"devDependencies": {
"cypress": "^13.3.1",
"cypress-markdown-preprocessor": "^1.10.3"
},
"repository": {
"type": "git",
"url": "/~https://github.com/cypress-io/cypress-test-tiny.git"
},
"dependencies": {
"http-server": "^14.1.1"
}
}