-
Notifications
You must be signed in to change notification settings - Fork 10
/
package.json
72 lines (72 loc) · 1.91 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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
{
"name": "geocoder-geojson",
"version": "1.11.0",
"description": "Geocoding results in GeoJSON format",
"main": "index.js",
"jsnext:main": "index.js",
"scripts": {
"test": "npm run lint && jest --coverage",
"docs": "tsc && documentation readme index.js -c documentation.yml --section=API --shallow",
"lint": "tsc && tslint *.ts && documentation lint index.js",
"browserify": "browserify ./examples/main.js -o ./examples/browserify/bundle.js",
"webpack": "webpack --entry ./examples/main.js --output-path ./examples/webpack --output-filename bundle.js"
},
"bin": {
"geocode": "./bin/geocode.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/DenisCarriere/geocoder-geojson.git"
},
"author": "Denis Carriere <carriere.denis@gmail.com>",
"contributors": [
"Denis Carriere <carriere.denis@gmail.com>"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/DenisCarriere/geocoder-geojson/issues"
},
"homepage": "https://github.com/DenisCarriere/geocoder-geojson#readme",
"devDependencies": {
"@types/jest": "16.0.1",
"browserify": "^13.3.0",
"coveralls": "^2.11.15",
"documentation": "^4.0.0-beta.18",
"jest-cli": "^18.1.0",
"tslint": "^4.3.1",
"typescript": "^2.1.5",
"webpack": "^2.2.0"
},
"keywords": [
"gis",
"geo",
"geojs",
"geospatial",
"geography",
"geometry",
"extent",
"geojson",
"google",
"map",
"geocode",
"geocoding",
"geocoder"
],
"testEnvironment": "node",
"dependencies": {
"@turf/bbox-polygon": "^3.7.0",
"@turf/distance": "^3.7.0",
"@turf/helpers": "^3.7.1",
"@turf/nearest": "^3.7.0",
"@types/chalk": "^0.4.31",
"@types/commander": "^2.3.30",
"@types/geojson": "0.0.31",
"@types/node": "^7.0.0",
"axios": "^0.15.2",
"chalk": "^1.1.3",
"commander": "^2.9.0"
},
"jest": {
"verbose": true
}
}