forked from Vivify-Ideas/cypress-testrail-reporter
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
48 lines (48 loc) · 1.11 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
{
"name": "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": {
"name": "Milutin Savovic",
"email": "[email protected]"
},
"license": "MIT",
"readmeFilename": "README.md",
"repository": {
"type": "git",
"url": "https://github.com/Vivify-Ideas/cypress-testrail-reporter.git"
},
"bugs": {
"url": "https://github.com/Vivify-Ideas/cypress-testrail-reporter/issues"
},
"scripts": {
"tsc": "tsc",
"clean": "rimraf dist",
"build": "npm run clean && npm run tsc"
},
"dependencies": {
"axios": "^0.21.1",
"btoa": "^1.1.2",
"chalk": "^2.4.2",
"deasync": "^0.1.21",
"form-data": "^4.0.0",
"glob": "^7.1.6",
"mocha": "^8.3.2",
"moment": "^2.29.1"
},
"devDependencies": {
"@types/chai": "^3.5.0",
"@types/mocha": "^8.2.2",
"@types/node": "^14.14.41",
"chai": "^3.5.0",
"rimraf": "^2.7.1",
"typescript": "^4.2.4"
}
}