-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
47 lines (47 loc) · 1.07 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": "jest-reporter-testrail",
"version": "0.1.3",
"description": "Reporter plugin that sends test coverage and test results to TestRail",
"main": "lib/index.js",
"files": [
"/lib"
],
"typings": "lib/index.d.ts",
"engines": {
"node": ">=10.8"
},
"scripts": {
"prepare": "npm run build",
"build": "tsc",
"test": "jest"
},
"repository": {
"type": "git",
"url": "git+https://github.com/DamianOsipiuk/jest-reporter-testrail.git"
},
"keywords": [
"jest",
"reporter",
"plugin",
"testrail"
],
"author": "Damian Osipiuk",
"license": "MIT",
"bugs": {
"url": "https://github.com/DamianOsipiuk/jest-reporter-testrail/issues"
},
"homepage": "https://github.com/DamianOsipiuk/jest-reporter-testrail#readme",
"dependencies": {
"moment": "^2.27.0",
"testrail-js-api": "^0.1.6"
},
"devDependencies": {
"@types/jest": "^26.0.4",
"@types/node": "^14.0.18",
"@types/node-fetch": "^2.5.7",
"jest": "^26.1.0",
"node-fetch": "^2.6.0",
"ts-jest": "^26.1.1",
"typescript": "^3.9.6"
}
}