forked from mapbox/leaflet-pip
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
44 lines (44 loc) · 1.06 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
{
"name": "@mapbox/leaflet-pip",
"version": "1.1.0",
"description": "point in polygon searches for leaflet",
"main": "index.js",
"scripts": {
"test": "npm run lint && npm run test-unit",
"test-unit": "browserify test/*.js | tape-run",
"lint": "eslint index.js",
"build-site": "browserify site/site.js > site/bundle.js",
"prepublish": "browserify -s leafletPip index.js > leaflet-pip.js && uglifyjs leaflet-pip.js -c -m > leaflet-pip.min.js"
},
"files": [
"index.js",
"leaflet-pip.js",
"leaflet-pip.min.js"
],
"keywords": [
"leaflet",
"plugin",
"point",
"in",
"polygon",
"geo",
"geographical"
],
"repository": {
"type": "git",
"url": "git://github.com/mapbox/leaflet-pip.git"
},
"devDependencies": {
"browserify": "~13.0.1",
"eslint": "^2.2.0",
"phantomjs": "~2.1.7",
"tape": "~4.5.1",
"tape-run": "~2.1.4"
},
"author": "Tom MacWright <tom@macwright.org>",
"license": "BSD-2-Clause",
"dependencies": {
"geojson-utils": "~1.1.0",
"uglify-js": "2.7.4"
}
}