-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
37 lines (37 loc) · 1.05 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
{
"name": "leaflet-river",
"version": "1.0.1",
"description": "draw rivers on a leaflet map",
"repository": "https://github.com/ggolikov/Leaflet.River",
"keywords": [
"leaflet",
"river",
"polyline",
"drawing"
],
"main": "index.js",
"types": "index.d.ts",
"author": "Grigory Golikov [email protected]",
"license": "MIT",
"scripts": {
"watch": "watchify -v -d demo/js/app.js -o demo/js/bundle.js",
"lint": "eslint ./src/",
"build-js": "cat ./src/L.River.js > ./dist/Leaflet.river-src.js",
"compress": "uglifyjs ./dist/Leaflet.river-src.js -o ./dist/Leaflet.river.js -m --comments",
"server": "live-server --port=3001 --host=localhost --open=demo --watch=demo",
"start": "npm-run-all --parallel watch server",
"deploy": "gh-pages -d demo"
},
"dependencies": {
"leaflet": "^1.0.1"
},
"devDependencies": {
"browserify": "^13.1.1",
"eslint": "^3.14.1",
"gh-pages": "^1.0.0",
"live-server": "^1.2.0",
"npm-run-all": "^4.0.1",
"uglifyjs": "^2.4.10",
"watchify": "^3.7.0"
}
}