forked from MichaelSolati/geofirestore-js
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
98 lines (98 loc) · 2.74 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
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
{
"name": "@spoxies/geofirestore",
"description": "Location-based querying and filtering using Firebase's Firestore",
"version": "3.1.2",
"scripts": {
"build": "rm -rf ./dist && rollup -c",
"coverage": "nyc report --reporter=text-lcov | coveralls",
"docs": "typedoc --module node --target es5 --out docs/ src/",
"lint": "tslint --project ./tslint.json 'src/**/*.ts'",
"test": "nyc --reporter=html --reporter=text mocha",
"release:major": "changelog -M && git add . && git commit -m 'chore(release): major version release' && npm version major",
"release:minor": "changelog -m && git add . && git commit -m 'chore(release): minor version release' && npm version minor",
"release:patch": "changelog -p && git add . && git commit -m 'chore(release): patch version release' && npm version patch",
"prepare": "npm run build",
"deploy": "firebase deploy",
"deploy:travis": "firebase deploy --non-interactive --token $FIREBASE_TOKEN"
},
"main": "dist/index.cjs.js",
"browser": "dist/geofirestore.js",
"module": "dist/index.esm.js",
"typings": "dist/index.d.ts",
"author": "Michael Solati mkslt04@gmail.com",
"homepage": "https://github.com/geofirestore/geofirestore-js/",
"repository": {
"type": "git",
"url": "git+https://github.com/spoxies/geofirestore-js.git"
},
"bugs": {
"url": "https://github.com/geofirestore/geofirestore-js/issues"
},
"license": "MIT",
"keywords": [
"geoquery",
"location",
"firebase",
"firestore",
"realtime",
"geolocation",
"geofire",
"geohash",
"map"
],
"files": [
"dist/**",
"CHANGELOG.md",
"LICENSE.md",
"package-lock.json",
"package.json",
"README.md"
],
"dependencies": {
"@firebase/firestore-types": "0.x.x || 1.x.x",
"@google-cloud/firestore": "0.x.x",
"@types/node": "x.x.x"
},
"devDependencies": {
"@types/chai": "^4.1.7",
"@types/mocha": "^5.2.5",
"chai": "^4.2.0",
"coveralls": "^3.0.2",
"firebase": "5.x.x",
"firebase-tools": "^6.3.0",
"generate-changelog": "^1.7.1",
"jsdom": "^13.1.0",
"jsdom-global": "^3.0.2",
"mocha": "^5.2.0",
"nyc": "^13.1.0",
"rollup": "^1.1.0",
"rollup-plugin-commonjs": "^9.2.0",
"rollup-plugin-copy": "^0.2.3",
"rollup-plugin-node-resolve": "^4.0.0",
"rollup-plugin-typescript2": "^0.18.1",
"rollup-plugin-uglify": "^6.0.1",
"ts-node": "^7.0.1",
"tslint": "^5.12.1",
"typedoc": "^0.14.1",
"typescript": "3.x.x"
},
"nyc": {
"extension": [
".ts"
],
"include": [
"src/**/*.ts"
],
"exclude": [
"src/interfaces/*"
],
"reporter": [
"html"
],
"all": true
},
"directories": {
"example": "examples",
"test": "test"
}
}