-
Notifications
You must be signed in to change notification settings - Fork 7
/
package.json
60 lines (60 loc) · 1.56 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
{
"name": "@raruto/leaflet-gesture-handling",
"version": "1.4.4",
"description": "A Leaflet plugin that allows to prevent default map scroll/touch behaviours",
"type": "module",
"main": "./dist/leaflet-gesture-handling.min.js",
"browser": "./dist/leaflet-gesture-handling.min.js",
"module": "src/index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"build": "rollup -c build/rollup.config.js",
"watch": "rollup -c build/rollup.config.js --watch",
"dev": "npm run watch",
"version": "npm run build && git add -A dist"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Raruto/leaflet-gesture-handling.git"
},
"keywords": [
"Leaflet",
"Maps",
"Gesture",
"Handling",
"two",
"fingers",
"mobile",
"scroll"
],
"author": "A Marquis",
"contributors": [
{
"name": "Raruto",
"url": "https://github.com/Raruto/leaflet-gesture-handling"
},
{
"name": "A Marquis",
"web": "https://github.com/elmarquis/Leaflet.GestureHandling"
}
],
"license": "GPL-3.0",
"bugs": {
"url": "https://github.com/Raruto/leaflet-gesture-handling/issues"
},
"homepage": "https://github.com/Raruto/leaflet-gesture-handling#readme",
"peerDependencies": {
"leaflet": "^1.3.4"
},
"devDependencies": {
"postcss-copy": "^7.1.0",
"postcss-import": "^15.1.0",
"rollup": "^3.17.2",
"rollup-plugin-copy": "^3.4.0",
"rollup-plugin-git-version": "^0.3.1",
"rollup-plugin-postcss": "^4.0.2",
"@rollup/plugin-commonjs": "^24.0.1",
"@rollup/plugin-node-resolve": "^15.0.1",
"@rollup/plugin-terser": "^0.4.0"
}
}