-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
85 lines (85 loc) · 2.37 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
78
79
80
81
82
83
84
85
{
"name": "@nearform/playwright-firebase",
"version": "1.2.9",
"description": "Plugin to allow for Firebase authentication in Playwright tests",
"main": "dist/index.js",
"exports": {
".": {
"types": {
"import": "./dist/index.d.ts",
"require": "./cjs/index.d.ts"
},
"import": "./dist/index.js",
"require": "./cjs/index.js",
"default": "./cjs/index.js"
},
"./package.json": "./package.json"
},
"type": "module",
"files": [
"dist/**/*",
"cjs/**/*"
],
"types": "./dist/index.d.ts",
"scripts": {
"lint": "eslint \"*.{ts,tsx}\"",
"prepare": "husky && npm run build",
"test": "jest",
"test:e2e": "cd tests/helpers/test-site && npm ci && npx playwright test",
"test:pw": "npx playwright test",
"pw": "npx playwright install --with-deps",
"build": "npm run build:cjs; npm run build:esm",
"build:cjs": "tsc --module commonjs --outDir cjs; echo '{\"type\":\"commonjs\"}' > cjs/package.json",
"build:esm": "tsc --module esnext --outDir dist"
},
"repository": {
"type": "git",
"url": "git+https://github.com/nearform/playwright-firebase.git"
},
"keywords": [
"playwright",
"firebase",
"testing",
"plugin"
],
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/nearform/playwright-firebase/issues"
},
"homepage": "https://github.com/nearform/playwright-firebase#readme",
"devDependencies": {
"@babel/core": "^7.21.8",
"@babel/preset-env": "^7.21.5",
"@babel/preset-typescript": "^7.22.5",
"@commitlint/cli": "^19.0.3",
"@commitlint/config-conventional": "^19.0.3",
"@jest/globals": "^29.5.0",
"@playwright/test": "^1.37.1",
"@types/node": "^22.1.0",
"@typescript-eslint/eslint-plugin": "^7.0.0",
"@typescript-eslint/parser": "^6.0.0",
"babel-jest": "^29.5.0",
"eslint": "^8.47.0",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-prettier": "^5.0.0",
"firebase": "^11.0.1",
"firebase-admin": "^12.0.0",
"husky": "^9.0.11",
"jest": "^29.5.0",
"lint-staged": "^15.0.1",
"playwright": "^1.37.1",
"prettier": "^3.0.1",
"ts-jest": "^29.1.1",
"ts-node": "^10.9.1",
"typescript": "^5.2.2"
},
"peerDependencies": {
"firebase-admin": "^12.0.0"
},
"lint-staged": {
"*.{js,jsx}": "eslint --cache --fix"
},
"dependencies": {
"dotenv": "^16.0.3"
}
}