-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
38 lines (38 loc) · 1.23 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
{
"author": "Wong Hoi Sing Edison <[email protected]>",
"description": "A sync view control for Leaflet",
"devDependencies": {
"eslint": "~9.7",
"http-server": "~14.1",
"sass": "~1.77",
"uglify-js": "~3.19"
},
"homepage": "https://github.com/drustack/Leaflet.SyncView",
"keywords": [
"leaflet",
"plugin",
"control",
"sync"
],
"license": "Apache-2.0",
"main": "dist/L.Control.SyncView.min.js",
"name": "@drustack/leaflet.syncview",
"peerDependencies": {
"jquery": "~3.7",
"leaflet": "~1.9"
},
"readmeFilename": "README.md",
"repository": {
"type": "git",
"url": "https://github.com/drustack/Leaflet.SyncView.git"
},
"scripts": {
"build": "npm run eslint && npm run uglifyjs && npm run sass",
"eslint": "eslint --fix src/L.Control.SyncView.js",
"http-server": "http-server",
"sass": "sass -s compressed src/L.Control.SyncView.scss dist/L.Control.SyncView.min.css",
"uglifyjs": "uglifyjs src/L.Control.SyncView.js -c -m --source-map -o dist/L.Control.SyncView.min.js"
},
"style": "dist/L.Control.SyncView.min.css",
"version": "1.9.3"
}