-
-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
57 lines (57 loc) · 1.52 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
52
53
54
55
56
57
{
"name": "testcafe-reporter-testrail",
"version": "0.1.0-semantic",
"description": "Testcafe reporter plugin that automatically publishes test run details to the TestRail system.",
"files": [
"/lib"
],
"main": "lib/index.js",
"typings": "lib/index.d.ts",
"engines": {
"node": ">=10.13"
},
"scripts": {
"clean": "rm -rf coverage lib node_modules",
"build": "tsc",
"lint": "eslint src tests --ext .js,.ts",
"test": "jest",
"verify": "npm run lint && npm run build && npm run test"
},
"repository": {
"type": "git",
"url": "git+https://github.com/DamianOsipiuk/testcafe-reporter-testrail.git"
},
"keywords": [
"testcafe",
"reporter",
"plugin",
"testrail"
],
"author": "Damian Osipiuk",
"license": "MIT",
"bugs": {
"url": "https://github.com/DamianOsipiuk/testcafe-reporter-testrail/issues"
},
"homepage": "https://github.com/DamianOsipiuk/testcafe-reporter-testrail#readme",
"dependencies": {
"moment": "^2.29.4",
"testrail-js-api": "^0.3.2"
},
"devDependencies": {
"@types/jest": "^29.1.0",
"@types/node": "^16.11.62",
"@types/node-fetch": "^2.6.2",
"@typescript-eslint/eslint-plugin": "^5.38.1",
"@typescript-eslint/parser": "^5.38.1",
"eslint": "^8.24.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-prettier": "^4.2.1",
"husky": "^8.0.1",
"jest": "^29.1.1",
"node-fetch": "^2.6.7",
"prettier": "^2.7.1",
"ts-jest": "^29.0.3",
"ts-node": "^10.9.1",
"typescript": "^4.8.4"
}
}