-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
97 lines (97 loc) · 2.38 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
{
"name": "io.sharedstreets.curbwheel",
"displayName": "Curb Wheel",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"build-js": "webpack",
"local-android": "npm run build-js && cordova run android",
"build-android": "npm run build-js && cordova build android",
"local-ios": "npm run build-js && cordova run ios",
"build-ios": "npm run build-js && cordova build ios",
"test": "ava"
},
"keywords": [
"ecosystem:cordova"
],
"author": "Shared Streets",
"contributors": [
{
"name": "Kevin Webb"
},
{
"name": "Russ Biggs"
},
{
"name": "Emily Eros"
},
{
"name": "Peter Liu"
}
],
"license": "Apache-2.0",
"ava": {
"babel": true,
"require": [
"esm"
]
},
"devDependencies": {
"@ava/babel": "^1.0.1",
"@babel/core": "^7.9.0",
"@babel/preset-env": "^7.9.5",
"ava": "^3.12.1",
"babel-loader": "^8.1.0",
"cordova-android": "^9.0.0",
"cordova-ios": "^6.1.0",
"cordova-plugin-ble-central": "^1.2.5",
"cordova-plugin-camera": "^5.0.0",
"cordova-plugin-device": "^2.0.3",
"cordova-plugin-file": "^6.0.2",
"cordova-plugin-geolocation": "^4.0.2",
"cordova-plugin-whitelist": "^1.3.4",
"cordova-sqlite-storage": "^5.0.1",
"esm": "^3.2.25",
"webpack": "^4.42.1",
"webpack-cli": "^3.3.11"
},
"cordova": {
"plugins": {
"cordova-plugin-whitelist": {},
"cordova-plugin-ble-central": {
"BLUETOOTH_USAGE_DESCRIPTION": "Scan for active BLE Devices"
},
"cordova-sqlite-storage": {},
"cordova-plugin-geolocation": {},
"cordova-plugin-file": {},
"cordova-plugin-camera": {
"ANDROID_SUPPORT_V4_VERSION": "27.+"
},
"cordova-plugin-device": {}
},
"platforms": [
"ios",
"android"
]
},
"dependencies": {
"@mapbox/sphericalmercator": "^1.1.0",
"@turf/along": "^6.0.1",
"@turf/bbox": "^6.0.1",
"@turf/bbox-polygon": "^6.0.1",
"@turf/destination": "^6.0.1",
"@turf/helpers": "^6.1.4",
"@turf/length": "^6.0.2",
"@turf/line-offset": "^5.1.5",
"@turf/line-slice-along": "^5.1.5",
"@turf/turf": "^5.1.6",
"cross-fetch": "^3.0.6",
"d3": "^4.0.0",
"mapbox-gl": "^1.12.0",
"mitt": "^2.1.0",
"rbush": "^3.0.1",
"sharedstreets-pbf": "^0.8.0",
"sharedstreets-types": "^1.3.1"
}
}