-
Notifications
You must be signed in to change notification settings - Fork 106
/
package.json
69 lines (69 loc) · 1.91 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
{
"name": "geofirex",
"version": "0.1.0",
"description": "Realtime Firestore GeoQueries with RxJS",
"main": "dist/index.cjs.js",
"module": "dist/index.esm.js",
"types": "dist/index.d.ts",
"files": [
"dist/**/*",
"README.md"
],
"repository": {
"type": "git",
"url": "https://github.com/codediodeio/geofirex.git"
},
"scripts": {
"test": "jest --coverage --forceExit --runInBand",
"test:watch": "jest --watchAll",
"build": "rollup -c",
"dev": "rollup -c -w",
"publish": ""
},
"keywords": [
"rxjs",
"firebase",
"geofire",
"geohash",
"map",
"firestore"
],
"author": "Jeff Delaney",
"license": "ISC",
"peerDependencies": {
"firebase": "^7.2.0",
"rxjs": "^6.2.1"
},
"devDependencies": {
"@firebase/firestore-types": "^0.4.3",
"@turf/bearing": "^6.0.1",
"@turf/distance": "^6.0.1",
"@turf/turf": "^5.1.6",
"@types/chance": "^1.0.1",
"@types/faker": "^4.1.2",
"@types/geojson": "^7946.0.4",
"@types/jest": "^23.3.14",
"@types/lodash": "^4.14.110",
"@types/ngeohash": "^0.6.1",
"@types/turf": "^3.5.32",
"firebase": "^7.2.3",
"jest": "^24.9.0",
"lodash": "^4.17.10",
"rollup": "^1.26.3",
"rollup-plugin-analyzer": "^2.0.4",
"rollup-plugin-bundle-size": "^1.0.3",
"rollup-plugin-commonjs": "9.1.0",
"rollup-plugin-node-resolve": "3.3.0",
"rollup-plugin-sizes": "^0.4.2",
"rollup-plugin-typescript2": "0.12.0",
"rollup-plugin-uglify": "^3.0.0",
"rxjs": "^6.2.1",
"ts-jest": "^24.1.0",
"ts-lint": "^4.5.1",
"ts-loader": "^6.2.1",
"ts-node": "^8.4.1",
"tslib": "^1.10.0",
"tslint": "5.9.1",
"typescript": "^3.7.2"
}
}