forked from leaflet-extras/RTree
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
38 lines (38 loc) · 1 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
{
"name": "rtree",
"version": "1.4.2",
"description": "rtree library for javascript",
"keywords": [
"rtree"
],
"contributors": [
"Jon-Carlos Rivera <imbcmdth@hotmail.com> (https://github.com/imbcmdth/RTree)",
"Calvin Metcalf <calvin.metalf@gmail.com> (https://github.com/calvinmetcalf)"
],
"bugs": {
"url": "https://github.com/leaflet-extras/RTree/issues"
},
"license": "MIT",
"main": "./lib/index.js",
"directories": {
"example": "examples",
"test": "test"
},
"scripts": {
"test": "npm run build && jshint lib && tape spec test/*.test.js | tspec",
"build": "npm run build-js && npm run min",
"build-js": "browserify . -s RTree > dist/rtree.js",
"min": "uglifyjs ./dist/rtree.js > dist/rtree.min.js"
},
"repository": {
"type": "git",
"url": "git://github.com/leaflet-extras/RTree.git"
},
"devDependencies": {
"browserify": "^3.41.0",
"jshint": "^2.5.0",
"tap-spec": "^0.1.8",
"tape": "^2.12.3",
"uglify-js": "^2.4.13"
}
}