forked from Mkona055/cypress-testrail-reporter
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
65 lines (65 loc) · 1.72 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
{
"name": "@eddiepal/cypress-testrail-reporter",
"version": "1.3.2",
"description": "A Testrail reporter for cypress including TestRail API basic library",
"main": "index.js",
"private": false,
"keywords": [
"cypress",
"testrail",
"reporter"
],
"author": "Edward Burke",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/eddiepal/cypress-testrail-reporter.git"
},
"bugs": {
"url": "https://github.com/eddiepal/cypress-testrail-reporter/issues"
},
"scripts": {
"tsc": "tsc",
"clean": "rimraf dist",
"build": "npm run clean && npm run tsc",
"lint": "gts lint",
"compile": "tsc",
"fix": "gts fix",
"mocha": "mocha"
},
"dependencies": {
"axios": "^0.21.1",
"btoa": "^1.1.2",
"chalk": "^2.4.2",
"deasync": "^0.1.28",
"eslint-plugin-mocha": "^10.1.0",
"form-data": "^4.0.0",
"glob": "^7.1.6",
"moment": "^2.29.1",
"nock": "^13.3.0",
"sinon": "^15.0.1"
},
"devDependencies": {
"@types/chai": "^3.5.0",
"@types/mocha": "^8.2.3",
"@types/node": "^14.14.41",
"@typescript-eslint/eslint-plugin": "^5.48.2",
"@typescript-eslint/parser": "^5.48.2",
"chai": "^3.5.0",
"eslint": "^8.32.0",
"eslint-config-google": "^0.14.0",
"eslint-config-standard-with-typescript": "^30.0.0",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-n": "^15.6.1",
"eslint-plugin-promise": "^6.1.1",
"gts": "^3.1.1",
"jest": "^29.3.1",
"mocha": "^10.2.0",
"mocha-suppress-logs": "^0.3.1",
"rimraf": "^2.7.1",
"ts-jest": "^29.0.5",
"ts-node": "^10.9.1",
"typescript": "~4.7.0"
},
"homepage": "https://github.com/eddiepal/cypress-testrail-reporter#readme"
}