-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
41 lines (41 loc) · 1.1 KB
/
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
37
38
39
40
41
{
"name": "@rancher-ecp-qa/cypress-library",
"version": "1.1.0",
"description": "Common Cypress Library",
"main": "index.ts",
"types:": "index.d.ts",
"files": [
"index.ts",
"index.d.ts",
"package.json",
"package-lock.json",
"README.md"
],
"scripts": {
"lint": "eslint --ext .js,.ts .",
"test": "echo \"Error: no test specified\" && exit 1",
"build-npm": "./scripts/build-npm",
"start-rancher": "./scripts/start-rancher",
"start-unit-tests": "./scripts/start-unit-tests"
},
"repository": {
"type": "git",
"url": "git+https://github.com/rancher-sandbox/rancher-ecp-qa.git"
},
"author": "juadk",
"license": "ISC",
"bugs": {
"url": "https://github.com/rancher-sandbox/rancher-ecp-qa/issues"
},
"homepage": "https://github.com/rancher-sandbox/rancher-ecp-qa#readme",
"devDependencies": {
"cypress": "^10.0.0",
"typescript": "^4.5.2",
"@typescript-eslint/parser": "^6.2.0",
"@typescript-eslint/eslint-plugin": "^6.2.0",
"eslint-plugin-cypress": "^2.13.0"
},
"dependencies": {
"@rancher-ecp-qa/cypress-library": "*"
}
}