-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
49 lines (49 loc) · 1.59 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
{
"name": "leaflet-rectangle-transform",
"version": "1.1.1",
"description": "Scale/rotate/move plugin for leaflet rectangle ",
"main": "index.js",
"scripts": {
"prestart": "npm install",
"test": "tape test/*.js",
"start": "npm run watch & npm run server",
"server": "http-server -p 3001",
"watch": "watchify -v -d example/js/app.js -o example/js/bundle.js",
"lint": "eslint ./src/",
"build-js": "cat ./src/header.js ./src/Util.js ./src/Matrix.js ./src/Rectangle.Transform.js > ./dist/L.Rectangle.Transform-src.js",
"compress": "uglifyjs ./dist/L.Rectangle.Transform-src.js -o ./dist/L.Rectangle.Transform.js --comments -m",
"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 && npm publish"
},
"keywords": [
"leaflet",
"vector",
"scale",
"resize",
"rotate",
"move",
"geometry",
"edit"
],
"author": "Alexander Milevski <[email protected]> and Simon Pigot <[email protected]>",
"license": "MIT",
"devDependencies": {
"eslint": "^4.1.1",
"http-server": "^0.10.0",
"leaflet": "^1.1.0",
"tape": "^4.7.0",
"uglify-js": "^3.0.21",
"watchify": "^3.9.0"
},
"directories": {
"example": "example"
},
"repository": {
"type": "git",
"url": "git+https://github.com/webtrike/Leaflet.Rectangle.Transform.git"
},
"bugs": {
"url": "https://github.com/webtrike/Leaflet.Rectangle.Transform/issues"
},
"homepage": "https://github.com/webtrike/Leaflet.Rectabgle.Transform#readme"
}