-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
52 lines (52 loc) · 1.33 KB
/
package.json
File metadata and controls
52 lines (52 loc) · 1.33 KB
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
{
"author": "Pavel Kunc <pavel@fry-it.com>",
"name": "@fry-it/e2e.playwright-material",
"version": "1.6.2",
"description": "Playwright support for Angular material test harnesses.",
"license": "MIT",
"engines": {
"node": ">=16.0.0"
},
"exports": {
".": "./dist/index.js"
},
"files": [
"dist/"
],
"module": "dist/index.js",
"type": "module",
"types": "dist/index.d.ts",
"keywords": [],
"repository": {
"type": "git",
"url": "git+https://github.com/Fry-IT/e2e.playwright-material.git"
},
"bugs": {
"url": "https://github.com/Fry-IT/e2e.playwright-material/issues"
},
"homepage": "https://github.com/Fry-IT/e2e.playwright-material#readme",
"scripts": {
"build": "npm run clean && tsc",
"clean": "rm -rf ./dist",
"lint": "eslint . --ext .ts,.tsx",
"package": "npm run build && npm pack",
"test": "jest --no-cache --runInBand",
"postversion": "git push && git push --tags"
},
"dependencies": {
"@angular/compiler": "20.x.x",
"@angular/material": "20.x.x",
"playwright": "*"
},
"devDependencies": {
"@types/node": "*",
"@typescript-eslint/eslint-plugin": "*",
"@typescript-eslint/parser": "*",
"eslint": "*",
"eslint-plugin-import": "*",
"typescript": "*"
},
"publishConfig": {
"registry": "https://npm.pkg.github.com"
}
}