-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
44 lines (44 loc) · 1.25 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
{
"name": "@noticeable-app/noticeable-firebase",
"version": "17.0.0",
"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": "./node_modules/.bin/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 <[email protected]>",
"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.0.2"
},
"devDependencies": {
"@eslint/eslintrc": "^3.2.0",
"@eslint/js": "^9.18.0",
"@typescript-eslint/eslint-plugin": "^8.20.0",
"@typescript-eslint/parser": "^8.20.0",
"eslint-config-prettier": "^10.0.1",
"eslint-plugin-prettier": "^5.2.1",
"prettier": "^3.4.2",
"typescript": "^5.7.3"
},
"files": [
"dist/**"
]
}