-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
51 lines (51 loc) · 1.3 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
{
"name": "wdio-testrail-v7-reporter",
"version": "0.1.2",
"description": "A Testrail reporter for WebdriverIO v7 including TestRail API basic library",
"main": "index.js",
"types": "index.d.ts",
"private": false,
"keywords": [
"mocha",
"webdriverio",
"testrail",
"reporter"
],
"author": {
"name": "Chanatan Charnkijtawarush",
"email": "ccharnkij@gmail.com"
},
"license": "MIT",
"readmeFilename": "README.md",
"repository": {
"type": "git",
"url": "https://github.com/ccharnkij/wdio-v7-testrail-reporter.git"
},
"bugs": {
"url": "https://github.com/ccharnkij/wdio-v7-testrail-reporter/issues"
},
"scripts": {
"tsc": "tsc",
"clean": "rimraf dist",
"test": "mocha dist/test",
"prettier": "prettier --single-quote --print-width=100 --trailing-comma=all --write './src/**/*.{js,jsx,ts,tsx}'",
"build": "yarn clean && yarn prettier && yarn tsc"
},
"dependencies": {
"btoa": "^1.1.2",
"unirest": "^0.5.1",
"@wdio/logger": "^6.0.16",
"@wdio/reporter": "^7.17.3"
},
"devDependencies": {
"@types/chai": "^3.4.34",
"@types/mocha": "^2.2.36",
"@types/node": "^6.0.58",
"axios": "^0.19.2",
"chai": "^3.5.0",
"mocha": "^8.0.1",
"prettier": "^2.0.5",
"rimraf": "^2.5.4",
"typescript": "^2.1.4"
}
}