forked from ryanrosello-og/playwright-slack-report
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
65 lines (65 loc) · 1.75 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
64
65
{
"dependencies": {
"@slack/web-api": "^6.9.1",
"@slack/webhook": "^7.0.1",
"commander": "^11.1.0",
"https-proxy-agent": "^7.0.1",
"ts-node": "^10.9.1",
"zod": "^3.22.4"
},
"devDependencies": {
"@playwright/test": "^1.40.0",
"@slack/types": "^2.7.0",
"@typescript-eslint/eslint-plugin": "^5.30.6",
"@typescript-eslint/parser": "^5.30.6",
"dotenv": "^16.0.1",
"eslint": "^7.32.0 || ^8.2.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-node": "^4.1.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-import": "^2.25.2",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^4.2.1",
"nyc": "^15.1.0",
"prettier": "^2.7.1",
"ts-sinon": "^2.0.2",
"typescript": "^4.7.4"
},
"scripts": {
"prettier": "prettier --write --loglevel warn \"**/**/*.ts\"",
"pw": "nyc playwright test && nyc report --reporter=lcov",
"build": "tsc -p ./tsconfig.json",
"lint": "npx eslint . --ext .ts",
"lint-fix": "npx eslint . --ext .ts --fix",
"cli": "yarn build && node dist/cli.js",
"cli-debug": "yarn build && npx . -c ./cli_config.json -j ./tests/test_data/valid_test_results.json"
},
"name": "playwright-slack-report",
"version": "1.1.58",
"bin": {
"playwright-slack-report": "dist/cli.js"
},
"main": "dist/cli.js",
"types": "dist/index.d.ts",
"repository": "[email protected]:ryanrosello-og/playwright-slack-report.git",
"author": "Ryan Rosello <[email protected]>",
"license": "MIT",
"files": [
"/dist/src"
],
"keywords": [
"slack",
"report",
"playwright",
"typescript"
],
"nyc": {
"all": true,
"include": [
"src/**/*.ts"
],
"exclude": [
"./custom_block/my_block.ts"
]
}
}