-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
64 lines (64 loc) · 1.62 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
{
"name": "leaflet-rotate",
"version": "0.2.8",
"description": "A Leaflet plugin that allows to add rotation functionality to map tiles",
"type": "module",
"main": "dist/leaflet-rotate.js",
"browser": "dist/leaflet-rotate.js",
"module": "src/index.js",
"scripts": {
"test": "uvu . \"(examples|src)[\\\\/].*\\.spec\\.js$\"",
"build": "rollup -c build/rollup.config.js",
"watch": "rollup -c build/rollup.config.js --watch",
"dev": "npm-run-all --print-label --parallel serve watch",
"serve": "http-server",
"version": "npm run build && git add -A dist"
},
"repository": {
"type": "git",
"url": "https://github.com/Raruto/leaflet-rotate.git"
},
"keywords": [
"leaflet",
"javascript",
"tiles",
"rotation",
"leaflet-rotate"
],
"author": {
"name": "Iván Sánchez Ortega",
"url": "https://github.com/Leaflet/Leaflet/tree/rotate"
},
"contributors": [
{
"name": "Raruto",
"url": "https://github.com/Raruto/leaflet-rotate"
},
{
"name": "Fabien Nicollet",
"url": "https://github.com/fnicollet/Leaflet/tree/rotate-master"
},
{
"name": "Zsolt “Hyperknot” Ero",
"url": "https://github.com/hyperknot"
}
],
"license": "GPL-3.0",
"bugs": {
"url": "https://github.com/Raruto/leaflet-rotate/issues"
},
"homepage": "https://github.com/Raruto/leaflet-rotate#readme",
"devDependencies": {
"rollup": "^3.20.6",
"@rollup/plugin-commonjs": "^24.1.0",
"@rollup/plugin-node-resolve": "^15.0.2",
"@rollup/plugin-terser": "^0.4.1",
"http-server": "^14.1.1",
"npm-run-all": "^4.1.5",
"playwright": "^1.32.3",
"uvu": "^0.5.6"
},
"peerDependencies": {
"leaflet": "^1.9.3"
}
}