-
-
Notifications
You must be signed in to change notification settings - Fork 50
/
package.json
113 lines (113 loc) · 2.98 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
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
{
"name": "cypress-firebase",
"version": "0.0.0-development",
"description": "Utilities to help testing Firebase projects with Cypress.",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"type": "commonjs",
"scripts": {
"clean": "rimraf lib lib-esm",
"build": "tsc",
"watch": "yarn build --watch",
"format": "biome format --write",
"format:check": "biome format",
"lint": "biome lint",
"lint:fix": "biome lint --write",
"test:base": "GCLOUD_PROJECT=test-project NODE_OPTIONS='--import tsx' mocha ./test/unit/**/*.spec.ts",
"test:cov:base": "nyc --reporter=lcov --reporter=html yarn test:base",
"test:watch": "yarn test:base --watch",
"emulators": "firebase emulators:start --only firestore,database --project test-project",
"test": "firebase emulators:exec --only firestore,database \"yarn test:base\"",
"test:cov": "firebase emulators:exec --only firestore,database \"yarn test:cov:base\"",
"size": "yarn build && size-limit",
"prepare": "husky"
},
"peerDependencies": {
"firebase-admin": "^11.0.0 || ^12.0.0"
},
"devDependencies": {
"@biomejs/biome": "1.9.4",
"@commitlint/cli": "19.6.1",
"@commitlint/config-conventional": "19.6.0",
"@firebase/rules-unit-testing": "3.0.4",
"@istanbuljs/nyc-config-typescript": "1.0.2",
"@size-limit/preset-small-lib": "11.1.6",
"@size-limit/webpack": "11.1.6",
"@types/chai": "4.3.20",
"@types/mocha": "10.0.10",
"@types/node": "20.17.10",
"@types/sinon-chai": "4.0.0",
"chai": "4.5.0",
"cypress": "13.17.0",
"firebase": "10.14.1",
"firebase-admin": "12.7.0",
"firebase-tools": "13.29.1",
"husky": "9.1.7",
"lint-staged": "15.2.11",
"mocha": "10.8.2",
"nyc": "17.1.0",
"rimraf": "6.0.1",
"sinon": "19.0.2",
"sinon-chai": "4.0.0",
"size-limit": "11.1.6",
"tsx": "4.19.2",
"typescript": "5.7.2"
},
"keywords": [
"cypress",
"cypress-plugin",
"firebase",
"testing",
"github-actions"
],
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/prescottprue/cypress-firebase.git"
},
"bugs": {
"url": "https://github.com/prescottprue/cypress-firebase/issues"
},
"author": {
"name": "Prescott Prue",
"url": "https://github.com/prescottprue"
},
"browser": {
"fs": false,
"os": false,
"path": false
},
"files": [
"bin",
"cmds",
"lib",
"index.d.ts"
],
"lint-staged": {
"*.{js,ts,json,md,yaml,yml}": [
"biome check --no-errors-on-unmatched --write"
]
},
"size-limit": [
{
"name": "CommonJS: attachCustomCommands",
"path": "lib/index.js",
"import": "{ attachCustomCommands }",
"limit": "8.5kb",
"webpack": false
},
{
"name": "CommonJS: plugin",
"path": "lib/index.js",
"import": "{ plugin }",
"limit": "8.5kb",
"webpack": false
}
],
"nyc": {
"include": [
"src"
]
},
"packageManager": "[email protected]"
}