-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
54 lines (54 loc) · 1.39 KB
/
Copy pathpackage.json
File metadata and controls
54 lines (54 loc) · 1.39 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
{
"name": "fireboost",
"version": "1.0.2",
"description": "Unofficial library Node.js Utils class for Firestore (https://firebase.google.com/docs/firestore)",
"license": "MIT",
"author": "39ro <giovanni@apitech.agency>",
"repository": "github:39ro/fireboost",
"bugs": {
"url": "https://github.com/39ro/fireboost/issues"
},
"main": "./lib/fireboost.js",
"types": "./lib/fireboost.d.ts",
"scripts": {
"prepare": "npm run build",
"prepublishOnly": "npm test && npm run lint",
"preversion": "npm run lint",
"prebuild": "npm run clean",
"pretest": "npm run build",
"posttest": "npm run lint",
"build": "tsc -p tsconfig.build.json",
"clean": "rimraf lib && echo 'Cleaning build folder'",
"fix": "gts fix",
"lint": "gts check",
"test": "firebase emulators:exec --only firestore 'jest'",
"test:watch": "jest --watch"
},
"engines": {
"node": ">=8.0.0"
},
"keywords": [
"firestore",
"nodejs",
"typescript",
"utils"
],
"dependencies": {
"@google-cloud/firestore": "^3.7.5",
"firebase-admin": "^8.11.0"
},
"devDependencies": {
"@firebase/testing": "^0.16.14",
"@jest/test-sequencer": "^24.9.0",
"@types/jest": "^24.0.25",
"@types/node": "^10.0.3",
"gts": "^1.1.2",
"jest": "^24.9.0",
"ts-jest": "^24.2.0",
"ts-node": "^8.5.4",
"typescript": "~3.7.0"
},
"files": [
"lib"
]
}