-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
47 lines (47 loc) · 1.31 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": "playwright-msteams-reporter",
"version": "0.0.12",
"description": "Microsoft Teams reporter for Playwright which allows you to send notifications about the status of your E2E tests.",
"main": "dist/index.js",
"scripts": {
"build": "tsc",
"watch": "tsc -w",
"test": "NODE_ENV=development npx playwright test",
"test:jest": "jest --coverage --coverageDirectory=../coverage"
},
"repository": {
"type": "git",
"url": "git+https://github.com/playwright-community/playwright-msteams-reporter.git"
},
"funding": {
"type": "github",
"url": "https://github.com/sponsors/estruyf"
},
"keywords": [
"playwright",
"msteams",
"Microsoft",
"Teams",
"e2e",
"testing"
],
"author": "Elio Struyf <elio@struyfconsulting.be>",
"license": "MIT",
"bugs": {
"url": "https://github.com/playwright-community/playwright-msteams-reporter/issues"
},
"homepage": "https://github.com/playwright-community/playwright-msteams-reporter#readme",
"devDependencies": {
"@playwright/test": "^1.45.0",
"@tsconfig/recommended": "^1.0.7",
"@types/jest": "^29.5.12",
"@types/node": "^20.14.9",
"dotenv": "^16.4.5",
"jest": "^29.7.0",
"ts-jest": "^29.1.5",
"typescript": "^5.5.2"
},
"peerDependencies": {
"@playwright/test": "^1.45.0"
}
}