-
Notifications
You must be signed in to change notification settings - Fork 58
/
package.json
107 lines (107 loc) · 2.82 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
106
107
{
"name": "geofirestore",
"description": "Location-based querying and filtering using Firebase's Firestore",
"version": "5.2.0",
"scripts": {
"build": "rimraf ./dist && rollup -c",
"coverage": "nyc report --reporter=text-lcov | coveralls",
"docs": "typedoc --out docs/ src/",
"lint": "gts lint",
"start": "firebase emulators:start",
"test": "firebase emulators:exec 'npm run test:nyc'",
"test:nyc": "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",
"deploy": "firebase deploy",
"postinstall": "node postinstall.js"
},
"main": "dist/index.cjs.js",
"browser": "dist/geofirestore.js",
"module": "dist/index.esm.js",
"typings": "dist/index.d.ts",
"author": "Michael Solati <[email protected]>",
"homepage": "https://geofirestore.com/",
"repository": {
"type": "git",
"url": "https://github.com/MichaelSolati/geofirestore-js.git"
},
"bugs": {
"url": "https://github.com/MichaelSolati/geofirestore-js/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",
"postinstall.js",
"README.md"
],
"dependencies": {
"geofirestore-core": "^5.0.0"
},
"devDependencies": {
"@rollup/plugin-node-resolve": "^13.1.3",
"@types/chai": "^4.3.0",
"@types/mocha": "^9.1.0",
"@types/node": "^17.0.16",
"axios": "^0.25.0",
"chai": "^4.3.6",
"coveralls": "^3.1.1",
"firebase-tools": "^10.1.5",
"generate-changelog": "^1.8.0",
"geokit": "^1.1.0",
"gts": "^3.1.0",
"jsdom": "^19.0.0",
"jsdom-global": "^3.0.2",
"mocha": "^9.2.0",
"nyc": "^15.1.0",
"protobufjs": "^6.11.2",
"rimraf": "^3.0.2",
"rollup": "^2.67.1",
"rollup-plugin-terser": "^7.0.2",
"rollup-plugin-typescript2": "^0.31.2",
"ts-node": "^10.5.0",
"tslib": "^2.3.1",
"typedoc": "^0.22.11",
"typescript": "~4.3.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
}
}