forked from nchaulet/node-geocoder
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
59 lines (59 loc) · 1.18 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
{
"name": "node-geocoder",
"version": "3.3.0",
"description": "Node Geocoder, node geocoding library, supports google maps, mapquest, open street map, tom tom, promise",
"main": "index.js",
"scripts": {
"test": "./node_modules/.bin/mocha --check-leaks",
"lint": "./node_modules/.bin/eslint lib"
},
"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": {
"q": "^1.1.2"
},
"devDependencies": {
"chai": "^1.8.1",
"mocha": "^1.14.0",
"eslint": "^0.24.1",
"sinon": "^1.7.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
}
}
}