forked from anishkny/playwright-test-coverage
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
49 lines (49 loc) · 1.11 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
{
"name": "@currents/playwright-test-coverage",
"version": "1.2.12",
"main": "index.js",
"files": [
"index.js",
"index.d.ts"
],
"keywords": [
"playwright",
"coverage",
"istanbul",
"babel"
],
"author": "Currents Software Inc.",
"contributors": [
{
"name": "Anish Karandikar",
"email": "[email protected]"
}
],
"license": "MIT",
"description": "Extends Playwright test to measure code coverage",
"repository": "github:currents-dev/playwright-test-coverage",
"types": "index.d.ts",
"peerDependencies": {
"@playwright/test": "^1.14.1"
},
"scripts": {
"format": "prettier --check .",
"format:fix": "prettier --write .",
"lint": "eslint .",
"lint:fix": "eslint --fix .",
"test": "npm run format && npm run lint && ./test/go.sh",
"pack": "./test/pack.sh"
},
"devDependencies": {
"commit-and-tag-version": "^12.2.0",
"eslint": "^8.57.0",
"eslint-config-prettier": "^9.1.0",
"prettier": "^3.2.5"
},
"dependencies": {
"istanbul-lib-coverage": "^3.2.2"
},
"publishConfig": {
"access": "public"
}
}