forked from MichaelSolati/geofirestore-core
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
105 lines (105 loc) · 2.8 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
99
100
101
102
103
104
105
{
"name": "geofirestore-core",
"description": "Lightweight location-based querying and encoding of Firebase Firestore Documents for geofirestore.",
"version": "4.1.2",
"scripts": {
"build": "rm -rf ./dist && rollup -c",
"coverage": "nyc report --reporter=text-lcov | coveralls",
"docs": "typedoc --out docs/ src/",
"lint": "gts check",
"test": "nyc --reporter=html --reporter=text mocha --package package.json --exit",
"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",
"pretest": "node pretest.js",
"deploy:docs": "firebase deploy"
},
"main": "dist/index.cjs.js",
"browser": "dist/geofirestore-core.js",
"module": "dist/index.esm.js",
"typings": "dist/index.d.ts",
"author": "Michael Solati <[email protected]>",
"homepage": "https://core.geofirestore.com/",
"repository": {
"type": "git",
"url": "https://github.com/MichaelSolati/geofirestore-core.git"
},
"bugs": {
"url": "https://github.com/MichaelSolati/geofirestore-core/issues"
},
"readme": "README.md",
"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": {
"geokit": "^1.1.0"
},
"optionalDependencies": {
"@google-cloud/firestore": ">= 2.0.0",
"@types/node": ">= 8.0.0",
"firebase": ">= 6.0.0"
},
"devDependencies": {
"@rollup/plugin-node-resolve": "^8.0.1",
"@types/chai": "^4.2.11",
"@types/mocha": "^7.0.2",
"@types/node": "^12.0.0",
"chai": "^4.2.0",
"coveralls": "^3.1.0",
"firebase-tools": "^8.4.2",
"generate-changelog": "^1.8.0",
"gts": "^2.0.2",
"jsdom": "^16.2.2",
"jsdom-global": "^3.0.2",
"mocha": "^7.2.0",
"nyc": "^15.1.0",
"protobufjs": "github:michaelsolati/protobuf.js",
"rollup": "^2.14.0",
"rollup-plugin-terser": "^6.1.0",
"rollup-plugin-typescript2": "^0.27.1",
"ts-node": "^8.10.2",
"typedoc": "0.15.0",
"typescript": "3.6.5"
},
"mocha": {
"extension": [
"ts"
],
"reporter": "spec",
"require": [
"ts-node/register",
"jsdom-global/register"
],
"timeout": 30000
},
"nyc": {
"extension": [
".ts"
],
"include": [
"src/**/*.ts"
],
"reporter": [
"html"
],
"all": true
}
}