forked from bahmutov/cypress-testrail-simple
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
66 lines (66 loc) · 1.69 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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
{
"name": "cypress-testrail-simple",
"version": "0.0.0-development",
"description": "Simple upload of Cypress test results to TestRail",
"main": "index.js",
"files": [
"src",
"bin"
],
"bin": {
"testrail-close-run": "bin/testrail-close-run.js",
"testrail-start-run": "bin/testrail-start-run.js",
"testrail-check-case-ids": "bin/testrail-check-case-ids.js",
"testrail-run-results": "bin/testrail-run-results.js",
"testrail-print-case": "bin/testrail-print-case.js"
},
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"semantic-release": "semantic-release",
"format": "prettier --write '{cypress,src,bin}/**/*.js'",
"print-case": "node ./bin/testrail-print-case.js --case 15"
},
"repository": {
"type": "git",
"url": "https://github.com/bahmutov/cypress-testrail-simple.git"
},
"keywords": [
"cypress",
"testrail",
"plugin",
"reporter",
"cypress-plugin"
],
"author": "Gleb Bahmutov <gleb.bahmutov@gmail.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/bahmutov/cypress-testrail-simple/issues"
},
"homepage": "https://github.com/bahmutov/cypress-testrail-simple#readme",
"devDependencies": {
"console.table": "^0.10.0",
"cypress": "13.6.3",
"prettier": "^2.5.1",
"semantic-release": "^18.0.0"
},
"dependencies": {
"@actions/core": "^1.10.0",
"arg": "^5.0.1",
"debug": "^4.3.2",
"find-cypress-specs": "^1.31.3",
"find-test-names": "^1.28.3",
"globby": "^11",
"got": "^11.8.2"
},
"release": {
"branches": [
{
"name": "main"
},
{
"name": "suite-support",
"prerelease": true
}
]
}
}