-
-
Notifications
You must be signed in to change notification settings - Fork 23
/
package.json
43 lines (43 loc) · 1.13 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
{
"name": "polygon-offset",
"version": "0.3.2",
"description": "Polygon offsetting algorithm, aimed for use with leaflet",
"main": "src/offset.js",
"keywords": [
"polygon",
"offset",
"algorithm",
"scale",
"margin",
"padding"
],
"author": "Alexander Milevski <[email protected]>",
"license": "MIT",
"devDependencies": {
"browserify": "^13.1.1",
"eslint": "^4.18.2",
"geojson-project": "^1.0.1",
"http-server": "^0.11.1",
"leaflet": "^1.0.1",
"nodemon": "^1.11.0",
"tap": "^8.0.0",
"watchify": "^3.7.0"
},
"scripts": {
"watch-js": "watchify example/app.js -o example/bundle.js -dv",
"watch": "npm run watch-js",
"build-js": "browserify -s Offset src/offset.js > dist/offset.js",
"build": "npm run build-js",
"start": "npm run watch & http-server -p 3003",
"test": "tap test/*.test.js -R spec",
"lint": "eslint ./src/",
"test:watch": "nodemon --exec 'npm run test && npm run lint'"
},
"repository": {
"type": "git",
"url": "https://github.com/w8r/polygon-offset.git"
},
"dependencies": {
"martinez-polygon-clipping": "^0.1.5"
}
}