-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
49 lines (49 loc) · 1.32 KB
/
package.json
File metadata and controls
49 lines (49 loc) · 1.32 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
{
"name": "fbcache",
"version": "1.0.0",
"description": "A library to use on the server side that allows you to implement a caching of the data of queries that are made to indicated paths to children in the Real Time Database or Firestore collections in an easy and simple way",
"main": "dist/index.js",
"directories": {
"doc": "docs"
},
"engines": {
"node": "12.18.3"
},
"scripts": {
"test": "jest --detectOpenHandles",
"test:watch": "jest --watch --detectOpenHandles",
"test:coverage": "jest --coverage --detectOpenHandles",
"build": "babel lib --out-dir dist"
},
"repository": {
"type": "git",
"url": "git+https://github.com/synergyvision/fbcache.git"
},
"keywords": [
"firebase",
"realtime",
"database",
"firestore",
"cache"
],
"author": "Luis Fuentes <luisrf0540@gmail.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/synergyvision/fbcache/issues"
},
"homepage": "https://github.com/synergyvision/fbcache#readme",
"dependencies": {
"firebase-admin": "9.1.1",
"moment": "2.27.0",
"node-cache": "5.1.2",
"uuid": "8.3.0"
},
"devDependencies": {
"@babel/cli": "^7.11.5",
"@babel/core": "^7.11.5",
"@babel/preset-env": "^7.11.5",
"babel-jest": "^26.3.0",
"dotenv": "^8.2.0",
"jest": "^26.4.2"
}
}