forked from awaragi/mocha-testrail-reporter
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
47 lines (47 loc) · 1.08 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
{
"name": "@travelbank/mocha-testrail-reporter",
"version": "1.0.13",
"description": "A Testrail reporter for mocha including TestRail API basic library",
"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/travelbank/mocha-testrail-reporter.git"
},
"bugs": {
"url": "https://github.com/travelbank/mocha-testrail-reporter/issues"
},
"scripts": {
"build": "npm run clean && npm run tsc",
"clean": "rimraf dist",
"prepare": "npm run build",
"test": "mocha dist/test",
"tsc": "tsc"
},
"dependencies": {
"btoa": "^1.1.2",
"unirest": "^0.5.1"
},
"peerDependencies": {
"mocha": "^3 || ^2.2.5"
},
"devDependencies": {
"@types/chai": "^3.4.34",
"@types/mocha": "^2.2.36",
"@types/node": "^6.0.58",
"chai": "^3.5.0",
"rimraf": "^2.5.4",
"typescript": "^4.3.2"
}
}