forked from nchaulet/node-geocoder
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
63 lines (63 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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
{
"name": "node-geocoder",
"version": "3.16.0",
"description": "Node Geocoder, node geocoding library, supports google maps, mapquest, open street map, tom tom, promise",
"main": "index.js",
"scripts": {
"test": "mocha --check-leaks",
"lint": "eslint lib",
"ci": "npm run lint && npm run test"
},
"repository": {
"type": "git",
"url": "https://github.com/nchaulet/node-geocoder.git"
},
"keywords": [
"geocoder",
"geocoding",
"geo",
"google",
"maps",
"mapquest",
"agol",
"arcgis",
"tomtom"
],
"author": "nchaulet",
"license": "MIT",
"bugs": {
"url": "https://github.com/nchaulet/node-geocoder/issues"
},
"dependencies": {
"bluebird": "^3.4.6",
"request": "^2.74.0",
"request-promise": "^4.1.1"
},
"devDependencies": {
"chai": "^3.5.0",
"eslint": "^3.11.0",
"mocha": "^3.2.0",
"sinon": "^1.17.3"
},
"eslintConfig": {
"env": {
"node": true
},
"rules": {
"strict": 0,
"quotes": [
1,
"single"
],
"no-console": 1,
"camelcase": 0,
"no-underscore-dangle": 0,
"no-shadow": 0,
"no-multi-spaces": 0,
"eqeqeq": 0,
"key-spacing": 0,
"comma-spacing": 0,
"no-unreachable": 1
}
}
}