forked from firebase/geofire-js
-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
68 lines (68 loc) · 1.43 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
57
58
59
60
61
62
63
64
65
66
67
68
{
"name": "geofire",
"description": "Location-based querying and filtering using Firebase with data",
"version": "5.0.1",
"author": "Firebase (https://firebase.google.com/)",
"homepage": "https://github.com/firebase/geofire-js/",
"repository": {
"type": "git",
"url": "https://github.com/mikepugh/geofire-js.git"
},
"bugs": {
"url": "https://github.com/mikepugh/geofire-js/issues"
},
"license": "MIT",
"keywords": [
"geoquery",
"location",
"firebase",
"realtime",
"geolocation"
],
"main": "dist/index.cjs.js",
"module": "dist/index.esm.js",
"typings": "dist/index.d.ts",
"files": [
"dist/**",
"LICENSE",
"README.md",
"package.json"
],
"peerDependencies": {
"firebase": "^2.4.0 || 3.x.x || 4.x.x || 5.x.x || 8.x.x"
},
"devDependencies": {
"@types/chai": "^4.2.14",
"@types/mocha": "^8.2.0",
"@types/node": "^14.14.22",
"chai": "^4.2.0",
"coveralls": "^3.1.0",
"firebase": "^8.2.5",
"jsdom": "^16.4.0",
"jsdom-global": "^3.0.2",
"mocha": "^8.2.1",
"nyc": "^15.1.0",
"rollup": "^2.38.1",
"rollup-plugin-commonjs": "^10.1.0",
"rollup-plugin-node-resolve": "^5.2.0",
"rollup-plugin-typescript2": "^0.29.0",
"rollup-plugin-uglify": "^6.0.4",
"source-map-support": "^0.5.19",
"ts-node": "^9.1.1",
"tslint": "^6.1.3",
"typescript": "^4.1.3"
},
"nyc": {
"extension": [
".ts"
],
"exclude": [
"**/*.d.ts",
"**/*.js"
],
"reporter": [
"html"
],
"all": true
}
}