forked from bahmutov/test-todomvc-using-app-actions
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
38 lines (38 loc) · 1.03 KB
/
package.json
File metadata and controls
38 lines (38 loc) · 1.03 KB
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": "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": "13.0.2"
},
"devDependencies": {
"cypress": "9.2.0",
"cypress-watch-and-reload": "1.4.3",
"prettier": "2.5.1",
"start-server-and-test": "1.14.0"
}
}