-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
28 lines (28 loc) · 1020 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
{
"name": "end_to_end_testing_with_testcafe",
"version": "1.0.0",
"description": "Tests used in the End-to-End Testing with TestCafe book",
"main": "login_test.js",
"scripts": {
"test:chrome": "testcafe chrome *_test.js",
"test:chrome:headless": "testcafe chrome:headless *_test.js",
"test:firefox": "testcafe firefox *_test.js",
"test:firefox:headless": "testcafe firefox:headless *_test.js",
"test:edge": "testcafe edge *_test.js",
"test:edge:headless": "testcafe edge:headless *_test.js",
"test:safari": "testcafe safari *_test.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/testingwithtestcafe/end_to_end_testing_with_testcafe.git"
},
"author": "Dennis Martinez",
"license": "MIT",
"bugs": {
"url": "https://github.com/testingwithtestcafe/end_to_end_testing_with_testcafe/issues"
},
"homepage": "https://github.com/testingwithtestcafe/end_to_end_testing_with_testcafe#readme",
"dependencies": {
"testcafe": "^3.5.0"
}
}