forked from joaquimserafim/node-open-geocoder
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
59 lines (59 loc) · 1.4 KB
/
package.json
File metadata and controls
59 lines (59 loc) · 1.4 KB
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-open-geocoder",
"version": "2.0.0",
"description": "Open Street Map API client for geocoding and reverse geocoding",
"main": "index.js",
"files": [
"LICENSE",
"README.md",
"index.js"
],
"scripts": {
"coverage": "open coverage/lcov-report/index.html",
"coverage:check": "istanbul check-coverage --statements 100 --functions 100 --lines 100 --branches 100",
"test": "standard --fix && istanbul cover -x test/index.js _mocha test/index.js"
},
"repository": {
"type": "git",
"url": "https://github.com/joaquimserafim/node-open-geocoder.git"
},
"keywords": [
"geocoder",
"reverse",
"openstreetmap"
],
"author": "@JoaquimSerafim",
"license": "ISC",
"bugs": {
"url": "https://github.com/joaquimserafim/node-open-geocoder/issues"
},
"homepage": "https://github.com/joaquimserafim/node-open-geocoder",
"devDependencies": {
"chai": "^3.5.0",
"istanbul": "0.4.5",
"mocha": "^3.3.0",
"nock": "^9.0.13",
"pre-commit": "^1.2.2",
"repeat-element": "^1.1.2",
"standard": "^8.6.0"
},
"dependencies": {
"get-property-value": "^2.0.0",
"is-valid-coordinates": "^1.0.0",
"is.object": "^1.0.0",
"json-parse-safe": "^1.0.3",
"qs": "^6.4.0"
},
"engines": {
"node": ">=6.1"
},
"pre-commit": [
"test",
"coverage:check"
],
"standard": {
"ignore": [
"bench.js"
]
}
}