-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
46 lines (46 loc) · 1.08 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
{
"name": "@jonoj/capacitor-fused-location",
"version": "1.2.1",
"description": "Provides access to the fused location api by google play services",
"main": "dist/esm/index.js",
"types": "dist/esm/index.d.ts",
"scripts": {
"build": "npm run clean && tsc",
"clean": "rm -rf ./dist",
"watch": "tsc --watch",
"prepublishOnly": "npm run build",
"prepare": "npm run build"
},
"author": "Johannes Normann Jensen",
"license": "MIT",
"dependencies": {
"@capacitor/core": "latest"
},
"devDependencies": {
"@capacitor/android": "^1.2.1",
"typescript": "^3.6.3"
},
"files": [
"dist/",
"android/"
],
"keywords": [
"capacitor",
"plugin",
"native",
"fusedlocation"
],
"capacitor": {
"android": {
"src": "android"
}
},
"repository": {
"type": "git",
"url": "git+https://github.com/jonoj-team/capacitor-fused-location.git"
},
"bugs": {
"url": "https://github.com/jonoj-team/capacitor-fused-location/issues"
},
"homepage": "https://github.com/jonoj-team/capacitor-fused-location#readme"
}