-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
38 lines (38 loc) · 968 Bytes
/
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
{
"name": "leaflet-tiles",
"version": "1.0.0",
"description": "Generate leaflet tiles from an input image",
"main": "index.mjs",
"scripts": {
"start": "node -max-old-space-size=16384 index.mjs",
"test": "echo \"Error: no test specified\" && exit 1",
"format": "prettier --write index.mjs",
"format-check": "prettier --check index.mjs",
"lint": "eslint index.mjs"
},
"repository": {
"type": "git",
"url": "git+https://github.com/the-hideout/leaflet-tiles.git"
},
"keywords": [
"leaflet",
"map",
"tiles"
],
"author": "Razzmatazz",
"license": "GPL-3.0-or-later",
"bugs": {
"url": "https://github.com/the-hideout/leaflet-tiles/issues"
},
"homepage": "https://github.com/the-hideout/leaflet-tiles#readme",
"dependencies": {
"dotenv": "16.4.7",
"luxon": "^3.5.0",
"ora": "^8.1.1",
"sharp": "0.33.5"
},
"devDependencies": {
"eslint": "^7.32.0",
"prettier": "2.5.1"
}
}