-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
49 lines (49 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
49
{
"name": "cy-tr-reporter",
"version": "1.2.8",
"description": "A Testrail reporter for cypress including TestRail API basic library",
"main": "index.js",
"private": false,
"keywords": [
"cypress",
"testrail",
"reporter"
],
"author": {
"name": "Tzechiu Lei",
"email": "[email protected]"
},
"license": "MIT",
"readmeFilename": "README.md",
"repository": {
"type": "git",
"url": "https://github.com/tlei123/cy-tr-reporter.git"
},
"bugs": {
"url": "https://github.com/tlei123/cy-tr-reporter/issues"
},
"scripts": {
"tsc": "tsc",
"clean": "rimraf dist",
"build": "npm run clean && npm run tsc"
},
"dependencies": {
"axios": "^0.21.4",
"btoa": "^1.1.2",
"chalk": "^2.4.1",
"mocha": "^9.1.2",
"moment": "^2.22.1"
},
"devDependencies": {
"@types/chai": "^3.4.34",
"@types/mocha": "^2.2.36",
"@types/node": "^6.0.58",
"chai": "^3.5.0",
"prettier": "^2.4.1",
"rimraf": "^2.5.4",
"tslint": "^6.1.3",
"tslint-config-prettier": "^1.18.0",
"tslint-eslint-rules": "^5.4.0",
"typescript": "^2.1.4"
}
}