-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
41 lines (41 loc) · 1.27 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
{
"name": "reproject-spherical-mercator",
"version": "0.1.3",
"description": "Reproject geojson geometry from WGS84 to Spherical Mercator",
"main": "index.js",
"scripts": {
"test": "mocha test/test.js ",
"build-debug": "browserify index.js --debug --standalone reproject | exorcist dist/reproject-spherical-mercator.js.map > dist/reproject-spherical-mercator.js",
"build-min": "browserify index.js --standalone reproject | uglifyjs -c -m > dist/reproject-spherical-mercator.min.js",
"build": "npm run build-debug && npm run build-min"
},
"repository": {
"type": "git",
"url": "https://github.com/geosquare/reproject-spherical-mercator.git"
},
"keywords": [
"geojson",
"reproject",
"WGS84",
"spherical",
"mercator"
],
"author": "Gagan Bansal <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/geosquare/reproject-spherical-mercator/issues"
},
"homepage": "https://github.com/geosquare/reproject-spherical-mercator",
"dependencies": {
"geojson-bbox": "0.0.0",
"sphericalmercator": "^1.0.3"
},
"devDependencies": {
"browserify": "~5.10.1",
"chai": "^2.1.0",
"exorcist": "^0.1.6",
"geojson-equality": "^0.1.2",
"mocha": "~1.21.4",
"uglify-js": "~2.4.15"
}
}