-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
44 lines (44 loc) · 1.23 KB
/
package.json
File metadata and controls
44 lines (44 loc) · 1.23 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
{
"name": "@noticeable-app/noticeable-firebase",
"version": "18.0.1",
"description": "Helper functions to simplify Firebase related tasks.",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"scripts": {
"build": "npm run clean && npm run lint && ./node_modules/.bin/tsc",
"clean": "rm -rf dist/",
"lint": "eslint src/*",
"prepare": "npm run clean && npm run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/noticeable-app/noticeable-firebase.git"
},
"keywords": [
"firebase",
"firestore",
"noticeable"
],
"author": "Noticeable Team <support@noticeable.io>",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/noticeable-app/noticeable-firebase/issues"
},
"homepage": "https://github.com/noticeable-app/noticeable-firebase#readme",
"dependencies": {
"firebase-admin": "^13.6.1"
},
"devDependencies": {
"@eslint/eslintrc": "^3.3.3",
"@eslint/js": "^10.0.1",
"@typescript-eslint/eslint-plugin": "^8.56.0",
"@typescript-eslint/parser": "^8.56.0",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-prettier": "^5.5.5",
"prettier": "^3.8.1",
"typescript": "^5.9.3"
},
"files": [
"dist/**"
]
}