forked from w8r/Leaflet.Path.Drag
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
60 lines (60 loc) · 1.86 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": "leaflet-path-drag",
"version": "1.8.0-beta.3",
"description": "Drag functionality for Leaflet vector layers",
"main": "index.js",
"files": [
"index.js",
"dist/*.js",
"src/**/*.js"
],
"scripts": {
"test": "browserify --transform [ babelify --presets [ es2015 ] ] ./test/*.test.js | tape-run --render='tap-spec' | tap-status",
"start": "npm run watch & npm run server",
"server": "http-server -p 3002",
"lint": "eslint ./src/",
"watch": "watchify -v -d example/js/app.js -o example/js/bundle.js",
"build-js": "mkdir -p dist && cat ./src/Path.Transform.js ./src/Path.Drag.js ./src/SVG.js ./src/SVG.VML.js ./src/Canvas.js > ./dist/L.Path.Drag-src.js",
"compress": "uglifyjs ./dist/L.Path.Drag-src.js -o ./dist/L.Path.Drag.js -m --comments",
"build": "npm run lint && npm run build-js && npm run compress",
"release": "git push origin master && git checkout gh-pages && git merge master && git push origin gh-pages && git checkout master && 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"
},
"prettier": {
"singleQuote": true
},
"devDependencies": {
"babel-core": "^6.26.3",
"babel-eslint": "^10.1.0",
"babel-preset-es2015": "^6.24.1",
"babelify": "^8.0.0",
"browserify": "^14.4.0",
"eslint": "^6.8.0",
"faucet": "0.0.1",
"http-server": "^0.12.3",
"leaflet": "^1.8.0",
"prosthetic-hand": "^1.3.1",
"smokestack": "^3.6.0",
"tap-spec": "^5.0.0",
"tap-status": "^1.0.1",
"tape": "^5.5.3",
"tape-run": "^10.0.0",
"uglify-js": "^3.0.21",
"watchify": "^3.9.0"
}
}