This repository has been archived by the owner on Apr 14, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 28
/
package.json
56 lines (56 loc) · 1.45 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
45
46
47
48
49
50
51
52
53
54
55
56
{
"name": "loopback-connector-firestore",
"version": "1.0.8",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"description": "Firebase Firestore connector for the LoopBack framework.",
"scripts": {
"lint": "eslint . --fix --ext .ts,.js",
"typecheck": "tsc --project tsconfig.json",
"pretest": "npm run build",
"test": "mocha --exit",
"stage-files": "git add .",
"build": "tsc",
"prepublishOnly": "npm run build"
},
"repository": {
"type": "git",
"url": "git://github.com/dyaa/loopback-connector-firestore.git"
},
"dependencies": {
"@google-cloud/firestore": "^2.6.1",
"loopback-connector": "4.9.0"
},
"devDependencies": {
"@types/node": "^12.12.14",
"@typescript-eslint/eslint-plugin": "^2.10.0",
"@typescript-eslint/parser": "^2.10.0",
"eslint": "^6.7.2",
"eslint-config-loopback": "^13.1.0",
"eslint-config-prettier": "^6.7.0",
"eslint-plugin-prettier": "^3.1.1",
"husky": "^3.1.0",
"loopback-datasource-juggler": "^4.17.0",
"mocha": "~6.2.2",
"npm-run-all": "^4.1.5",
"prettier": "^1.19.1",
"should": "^13.2.3",
"typescript": "^3.7.3"
},
"engines": {
"node": ">=10"
},
"keywords": [
"connector",
"datasource",
"dyaa",
"loopback",
"strongloop",
"firestore",
"firebase"
],
"author": "Dyaa Eldin <mail@dyaa.me> (https://dyaa.me)",
"license": "MIT",
"bugs": "https://github.com/dyaa/loopback-connector-firestore/issues",
"homepage": "https://github.com/dyaa/loopback-connector-firestore"
}