forked from w8r/Leaflet.Path.Drag
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
40 lines (40 loc) · 1.2 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
{
"name": "leaflet-path-drag",
"version": "0.1.9",
"description": "Drag functionality for Leaflet vector layers",
"main": "index.js",
"scripts": {
"test": "echo \"No tests yet\" && exit 1",
"start": "npm run watch & serve -p 3001",
"watch": "watchify -v -d example/js/app.js -o example/js/bundle.js",
"build-js": "cat ./src/Path.Transform.js ./src/Path.Drag.js ./src/MultiPoly.Drag.js > ./dist/L.Path.Drag-src.js",
"compress": "uglifyjs ./dist/L.Path.Drag-src.js -o ./dist/L.Path.Drag.js -m",
"build": "npm run build-js && npm run compress",
"release": "git push origin master && git checkout gh-pages && git merge master && git push origin gh-pages && npm publish"
},
"keywords": [
"leaflet",
"path",
"polyline",
"drag",
"polygon"
],
"author": "Alexander Milevski <[email protected]>",
"license": "MIT",
"repository": {
"type": "git",
"url": "git://github.com/w8r/Leaflet.Path.Drag.git"
},
"bugs": {
"url": "https://github.com/w8r/Leaflet.Path.Drag/issues"
},
"dependencies": {
"leaflet": "^0.7.3"
},
"devDependencies": {
"browserify": "^8.1.1",
"serve": "^1.4.0",
"uglifyjs": "^2.3.6",
"watchify": "^2.2.1"
}
}