-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
77 lines (77 loc) · 2.22 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
66
67
68
69
70
71
72
73
74
75
76
77
{
"name": "@stencil/playwright",
"version": "0.2.1",
"description": "Testing adapter to use Playwright with Stencil",
"main": "dist/index.cjs",
"module": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist"
],
"scripts": {
"build": "npm run build.empty && npm run build.types && npm run build.bundle",
"build.empty": "rm -rf ./dist && rm -f ./build/build.js",
"build.types": "tsc --emitDeclarationOnly --outDir ./dist",
"build.bundle": "tsc ./build/build.ts && node ./build/build.js",
"format": "npm run format.base -- --write",
"format.base": "prettier --cache \"src/**/*.ts\"",
"format.dry-run": "npm run format.base -- --list-different",
"lint": "eslint \"src/**/*.ts\"",
"spellcheck": "cspell --no-progress \"src/**/*.ts\" \"build/**/*.ts\" \"*.md\"",
"test": "jest"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ionic-team/stencil-playwright.git"
},
"keywords": [
"stencil",
"playwright",
"testing"
],
"author": "Stencil Team",
"license": "MIT",
"bugs": {
"url": "https://github.com/ionic-team/stencil-playwright/issues"
},
"homepage": "https://github.com/ionic-team/stencil-playwright#readme",
"engines": {
"node": ">=12.0.0",
"npm": ">=6.0.0"
},
"volta": {
"node": "20.11.1",
"npm": "10.4.0"
},
"peerDependencies": {
"@playwright/test": ">=1.41.2",
"@stencil/core": ">=4.13.0"
},
"devDependencies": {
"@ionic/prettier-config": "^4.0.0",
"@playwright/test": "^1.41.2",
"@stencil/core": "^4.13.0",
"@types/eslint": "^8.56.2",
"@types/jest": "^29.5.12",
"@types/node": "^20.11.19",
"@typescript-eslint/eslint-plugin": "^7.0.2",
"@typescript-eslint/parser": "^7.0.2",
"cspell": "^8.6.0",
"esbuild": "^0.20.1",
"eslint": "^8.56.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-jsdoc": "^48.2.0",
"eslint-plugin-simple-import-sort": "^12.0.0",
"eslint-plugin-unused-imports": "^3.1.0",
"jest": "^29.7.0",
"prettier": "^3.2.5",
"ts-jest": "^29.1.2",
"ts-node": "^10.9.2",
"typescript": "^5.3.3"
},
"prettier": "@ionic/prettier-config",
"dependencies": {
"deepmerge": "^4.3.1",
"find-up": "^7.0.0"
}
}