-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
43 lines (43 loc) · 1.06 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
{
"name": "autoset-status-cypress-testrail-reporter",
"version": "1.1.1",
"description": "A TestRail auto-set status reporter for Test Run cypress including TestRail API basic library",
"main": "index.js",
"private": false,
"keywords": [
"cypress",
"testrail",
"reporter"
],
"author": {
"name": "Dmytro Kuznetsov",
"email": "[email protected]"
},
"license": "MIT",
"readmeFilename": "README.md",
"repository": {
"type": "git",
"url": "https://github.com/dkuznetsov21/autoset-status-cypress-testrail-reporter.git"
},
"bugs": {
"url": "https://github.com/dkuznetsov21/autoset-status-cypress-testrail-reporter/issues"
},
"scripts": {
"tsc": "tsc",
"clean": "rimraf dist",
"build": "npm run clean && npm run tsc"
},
"dependencies": {
"axios": "^0.21.0",
"chalk": "^4.1.0",
"mocha": "^8.2.1"
},
"devDependencies": {
"@types/chai": "^4.2.14",
"@types/mocha": "^8.2.0",
"@types/node": "^14.14.11",
"chai": "^4.2.0",
"rimraf": "^3.0.2",
"typescript": "^4.1.2"
}
}