forked from sumcumo/cypress-testrail-reporter
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
63 lines (63 loc) · 1.7 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
58
59
60
61
62
63
{
"name": "@sum.cumo/cypress-testrail-reporter",
"description": "Parse and Post your cypress results to testrail",
"version": "1.4.0",
"bin": {
"cypress-testrail-reporter": "dist/index.js"
},
"repository": {
"type": "git",
"url": "https://github.com/sumcumo/cypress-testrail-reporter.git"
},
"author": "Marcel Jahn <[email protected]>",
"main": "./dist/index.js",
"types": "./dist/types.d.ts",
"files": [
"dist",
"types"
],
"scripts": {
"eslint": "eslint --ext .ts,.js './src'",
"lint": "yarn eslint",
"test": "jest",
"build": "tsc -p .",
"release": "yarn build && npm publish --access public"
},
"dependencies": {
"@sum.cumo/node-testrail": "2.3.0",
"yargs": "^17.0.1"
},
"keywords": [
"testrail",
"api",
"cypress",
"typescript",
"mochawesome"
],
"license": "Apache-2.0",
"devDependencies": {
"@babel/core": "^7.14.6",
"@babel/plugin-proposal-object-rest-spread": "7.14.7",
"@babel/plugin-transform-runtime": "^7.14.5",
"@babel/preset-env": "7.14.7",
"@babel/preset-typescript": "7.14.5",
"@commitlint/cli": "^12.1.4",
"@commitlint/config-conventional": "^12.1.4",
"@types/jest": "^26.0.23",
"@typescript-eslint/eslint-plugin": "^4.28.1",
"@typescript-eslint/parser": "^4.28.1",
"eslint": "^7.29.0",
"eslint-config-airbnb-base": "^14.2.0",
"eslint-import-resolver-alias": "^1.1.2",
"eslint-plugin-import": "^2.23.4",
"eslint-plugin-jest": "^24.3.6",
"jest": "^27.0.6",
"simple-git-hooks": "^2.5.1",
"ts-jest": "^27.0.3",
"typescript": "4.3.4"
},
"simple-git-hooks": {
"pre-commit": "yarn lint",
"commit-msg": "npx commitlint -e"
}
}