-
Notifications
You must be signed in to change notification settings - Fork 20
/
Copy pathpackage.json
51 lines (51 loc) · 1.34 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
{
"name": "offline-leaflet-map",
"version": "0.4.1",
"description": "A Leaflet TileLayer with offline capabilities.",
"main": "lib/index.js",
"scripts": {
"watch": "node_modules/build-library/watch",
"test": "npx esbuild tests/index.ts --bundle --outdir=tests --external:mocha",
"build": "node_modules/build-library/build",
"prepublishOnly": "gulp"
},
"browserify": {
"transform": [
"coffeeify"
]
},
"repository": "https://github.com/mWater/offline-leaflet-map",
"author": "Mathieu Briau",
"license": "LGPL-3.0",
"devDependencies": {
"@types/async": "^3.2.16",
"@types/chai": "^4.3.4",
"@types/leaflet": "^1.9.0",
"@types/lodash": "^4.14.191",
"browserify": "^10.2.4",
"buffer": "^6.0.3",
"build-library": "github:mWater/build-library",
"canonical-json": "0.0.4",
"chai": "^4.3.7",
"coffee-script": "^1.9.3",
"coffeeify": "^1.1.0",
"glob": "^4.3.5",
"gulp": "^4.0.0",
"gulp-coffee": "^2.3.1",
"gulp-rename": "^1.4.0",
"gulp-uglify": "^3.0.1",
"gulp-util": "^3.0.3",
"leaflet": "^1.9.3",
"mocha": "^2.5.3",
"vinyl-buffer": "^1.0.1",
"vinyl-source-stream": "^1.0.0"
},
"peerDependencies": {
"leaflet": "^1.9.3"
},
"dependencies": {
"@types/websql": "0.0.27",
"async": "^1.5.2",
"idb-wrapper": "^1.7.2"
}
}