-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
30 lines (30 loc) · 914 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
{
"name": "testing-methods",
"version": "1.0.0",
"description": "Details Central Advancement's testing methods for web applications complete with guides and samples.",
"main": "index.js",
"directories": {
"doc": "docs"
},
"dependencies": {},
"devDependencies": {
"cypress": "^10.3.0",
"eslint": "^8.20.0",
"eslint-plugin-cypress": "^2.12.1"
},
"scripts": {
"test": "CYPRESS_baseUrl=https://www.cu.edu cypress run --spec cypress/integration/sample_spec.js",
"cy:open": "CYPRESS_baseUrl=https://www.cu.edu cypress open"
},
"repository": {
"type": "git",
"url": "git+https://github.com/CUCentralAdvancement/testing-methods.git"
},
"keywords": [],
"author": "",
"license": "MIT",
"bugs": {
"url": "https://github.com/CUCentralAdvancement/testing-methods/issues"
},
"homepage": "https://github.com/CUCentralAdvancement/testing-methods#readme"
}