-
Notifications
You must be signed in to change notification settings - Fork 189
/
Copy pathpackage.json
50 lines (50 loc) · 1.14 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
{
"name": "mocha-testrail-reporter",
"version": "2.0.5",
"description": "A Testrail reporter for mocha utilising TestRail API",
"main": "index.js",
"private": false,
"keywords": [
"mocha",
"testrail",
"reporter"
],
"author": {
"name": "Pierre Awaragi",
"email": "[email protected]"
},
"license": "MIT",
"readmeFilename": "README.md",
"repository": {
"type": "git",
"url": "https://github.com/awaragi/mocha-testrail-reporter.git"
},
"bugs": {
"url": "https://github.com/awaragi/mocha-testrail-reporter/issues"
},
"scripts": {
"build": "tsc",
"clean": "rimraf dist",
"test": "mocha dist/test",
"test:ts": "mocha -r ts-node/register src/test/*",
"format": "prettier --check ./**/* --write"
},
"dependencies": {
"btoa": "^1.1.2",
"unirest": "^0.6.0"
},
"peerDependencies": {
"mocha": "9.2.2"
},
"devDependencies": {
"@types/chai": "^4.3.0",
"@types/mocha": "^9.1.0",
"@types/node": "^12.20.47",
"chai": "^4.3.6",
"mocha": "^9.2.2",
"prettier": "^2.6.0",
"rimraf": "^3.0.2",
"ts-node": "^10.7.0",
"typescript": "^4.6.2"
}
}