forked from bahmutov/test-todomvc-using-app-actions
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
36 lines (36 loc) · 985 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
30
31
32
33
34
35
36
{
"name": "test-todomvc-using-app-actions",
"version": "1.0.0",
"description": "Example Cypress tests going from page objects to app actions",
"main": "index.js",
"scripts": {
"test": "cypress run",
"start": "http-server -p 8888 -c-1",
"cypress": "cypress open",
"dev": "start-test 8888 cypress"
},
"repository": {
"type": "git",
"url": "git+https://github.com/bahmutov/test-todomvc-using-app-actions.git"
},
"keywords": [
"cypress",
"cypress-io",
"cypress-example",
"todomvc"
],
"author": "Gleb Bahmutov <gleb.bahmutov@gmail.com> (https://glebbahmutov.com/)",
"license": "MIT",
"private": true,
"bugs": {
"url": "https://github.com/bahmutov/test-todomvc-using-app-actions/issues"
},
"homepage": "https://github.com/bahmutov/test-todomvc-using-app-actions#readme",
"dependencies": {
"http-server": "0.12.3"
},
"devDependencies": {
"cypress": "7.3.0",
"start-server-and-test": "1.12.1"
}
}