-
Notifications
You must be signed in to change notification settings - Fork 37
/
package.json
67 lines (67 loc) · 2.04 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
{
"name": "mapbox-gl-cordova-offline",
"version": "0.2.1",
"description": "Offline vector maps in Cordova using Mapbox GL JS",
"main": "www/mapbox-gl-cordova-offline.js",
"scripts": {
"start": "run-p run-android start-server build-dev",
"run-android": "cordova run android",
"start-server": "live-server --watch=www --no-browser",
"build-dev": "rollup -c --environment BUILD:dev --watch",
"build": "rollup -c --environment BUILD:production",
"build-prod-min": "rollup -c --environment BUILD:production,MINIFY:true"
},
"keywords": [],
"author": "Oscar Fonts <[email protected]>",
"license": "SEE LICENSE IN LICENSE.txt",
"repository": {
"type": "git",
"url": "[email protected]:oscarfonts/mapbox-gl-cordova-offline.git"
},
"devDependencies": {
"@mapbox/flow-remove-types": "1.3.0-await.upstream.1",
"assert": "1.4.1",
"babel-eslint": "10.0.1",
"eslint": "5.12.0",
"eslint-config-mourner": "3.0.0",
"eslint-plugin-flowtype": "3.2.1",
"live-server": "1.2.1",
"mapbox-gl": "0.53.1",
"npm-run-all": "4.1.2",
"pako": "1.0.6",
"rollup": "^0.66.2",
"rollup-plugin-buble": "^0.18.0",
"rollup-plugin-commonjs": "^9.1.6",
"rollup-plugin-json": "^2.3.0",
"rollup-plugin-node-resolve": "3.4.0",
"rollup-plugin-replace": "^2.0.0",
"rollup-plugin-sourcemaps": "^0.4.2",
"rollup-plugin-terser": "4.0.4",
"rollup-plugin-uglify": "^3.0.0",
"rollup-plugin-unassert": "^0.2.0",
"rollup-pluginutils": "2.3.3"
},
"dependencies": {
"base64-js": "1.3.0",
"brfs": "^1.4.4",
"cordova-android": "6.3.0",
"cordova-ios": "4.5.4",
"cordova-plugin-compat": "1.2.0",
"cordova-plugin-device": "1.1.6",
"cordova-plugin-file": "6.0.1",
"cordova-plugin-whitelist": "1.3.2",
"cordova-sqlite-ext": "0.10.5"
},
"cordova": {
"plugins": {
"cordova-plugin-whitelist": {},
"cordova-plugin-file": {},
"cordova-sqlite-ext": {},
"cordova-plugin-device": {}
},
"platforms": [
"ios",
"android"
]
}
}