-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
54 lines (54 loc) · 1.72 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
{
"name": "@skilbourn/playwright-report-summary",
"version": "1.1.1",
"description": "generate a customizable text summary of your playwright test results",
"main": "./dist/index.js",
"types": "./dist/types.d.ts",
"files": [
"/dist"
],
"scripts": {
"build": "tsc -p ./tsconfig.json",
"lint": "npx eslint . --ext .ts",
"prettier": "prettier --write --loglevel warn \"**/**/*.ts\"",
"prepublish": "npm run build",
"test": "npx playwright test",
"typecheck": "tsc",
"test:coverage": "nyc playwright test && nyc report --reporter=lcov --reporter=html"
},
"repository": {
"type": "git",
"url": "git+https://github.com/stephenkilbourn/playwright-report-summary.git"
},
"keywords": [
"playwright",
"report"
],
"author": "Stephen Kilbourn <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/stephenkilbourn/playwright-report-summary/issues"
},
"homepage": "https://github.com/stephenkilbourn/playwright-report-summary#readme",
"devDependencies": {
"@istanbuljs/nyc-config-typescript": "^1.0.2",
"@playwright/test": "^1.27.1",
"@sinonjs/fake-timers": "^9.1.2",
"@types/node": "^18.7.23",
"@types/sinonjs__fake-timers": "^8.1.2",
"@typescript-eslint/eslint-plugin": "^5.38.1",
"@typescript-eslint/parser": "^5.38.1",
"babel-plugin-istanbul": "^6.1.1",
"eslint": "^8.24.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-prettier": "^4.2.1",
"mock-fs": "^5.1.4",
"nyc": "^15.1.0",
"playwright": "^1.27.1",
"playwright-test-coverage": "^1.2.0",
"prettier": "^2.7.1",
"source-map-support": "^0.5.21",
"typescript": "^4.8.4"
}
}