-
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
66 lines (66 loc) · 1.71 KB
/
Copy pathpackage.json
File metadata and controls
66 lines (66 loc) · 1.71 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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
{
"name": "@jahed/firebase-rules",
"version": "2.1.1",
"description": "A type-safe Firebase Real-time Database Security Rules builder.",
"type": "module",
"main": "lib/index.js",
"module": "lib/index.js",
"types": "lib/index.d.ts",
"exports": {
".": {
"default": "./lib/index.js",
"types": "./lib/*.d.ts"
},
"./*.js": {
"types": "./lib/*.d.ts",
"default": "./lib/*.js"
},
"./ts": {
"default": "./src/index.ts"
},
"./*.ts": {
"default": "./src/*.ts"
}
},
"files": [
"lib",
"src",
"docs"
],
"sideEffects": false,
"author": "Jahed Ahmed",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/jahed/firebase-rules.git"
},
"bugs": "https://github.com/jahed/firebase-rules/issues",
"funding": "https://jahed.dev/donate",
"scripts": {
"format": "prettier -w .",
"lint": "tsc -p tsconfig.json",
"test": "npm run test:node -- --test './**/*.test.ts'",
"test:update": "npm run test:node -- --test-update-snapshots --test './**/*.test.ts'",
"test:file": "npm run test:node -- --test",
"test:node": "node --disable-warning=ExperimentalWarning --experimental-strip-types --experimental-test-isolation=none --test-timeout=5000",
"build": "rm -rf lib && tsc -p tsconfig.lib.json",
"all": "npm run test && npm run format && npm run lint && npm run build"
},
"engines": {
"node": ">=22.11.0"
},
"devDependencies": {
"@tsconfig/node-ts": "^23.6.1",
"@tsconfig/node22": "^22.0.2",
"@types/node": "^22.18.6",
"prettier": "^3.6.2",
"typescript": "5.9.x"
},
"keywords": [
"firebase",
"database",
"rules",
"builder",
"type"
]
}