forked from firebase/geofire-js
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
78 lines (78 loc) · 1.85 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
69
70
71
72
73
74
75
76
77
78
{
"name": "geofire",
"description": "Location-based querying and filtering using Firebase",
"version": "5.0.1",
"scripts": {
"build": "rollup -c",
"coverage": "nyc report --reporter=text-lcov | coveralls",
"lint": "tslint --project ./tslint.json 'src/**/*.ts'",
"test": "nyc --reporter=html --reporter=text mocha",
"prepare": "npm run build"
},
"author": "Firebase (https://firebase.google.com/)",
"homepage": "https://github.com/firebase/geofire-js/",
"repository": {
"type": "git",
"url": "https://github.com/firebase/geofire-js.git"
},
"bugs": {
"url": "https://github.com/firebase/geofire-js/issues"
},
"license": "MIT",
"keywords": [
"geoquery",
"location",
"firebase",
"realtime",
"geolocation"
],
"main": "dist/index.cjs.js",
"browser": "dist/geofire.min.js",
"module": "dist/index.esm.js",
"typings": "dist/index.d.ts",
"files": [
"dist/**",
"LICENSE",
"README.md",
"package.json"
],
"dependencies": {
"@firebase/database-types": "0.x.x"
},
"peerDependencies": {
"firebase": "^2.4.0 || 3.x.x || 4.x.x || 5.x.x"
},
"devDependencies": {
"@types/chai": "^4.1.7",
"@types/mocha": "^5.2.5",
"@types/node": "^10.12.21",
"chai": "^4.2.0",
"coveralls": "^3.0.2",
"firebase": "5.x.x",
"jsdom": "^13.2.0",
"jsdom-global": "^3.0.2",
"mocha": "^5.2.0",
"nyc": "^13.1.0",
"rollup": "^1.1.2",
"rollup-plugin-commonjs": "^9.2.0",
"rollup-plugin-node-resolve": "^4.0.0",
"rollup-plugin-typescript2": "^0.19.2",
"rollup-plugin-uglify": "^6.0.2",
"source-map-support": "^0.5.10",
"ts-node": "^8.0.2",
"tslint": "^5.12.1",
"typescript": "3.x.x"
},
"nyc": {
"extension": [
".ts"
],
"include": [
"src/**/*.ts"
],
"reporter": [
"html"
],
"all": true
}
}