-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
58 lines (58 loc) · 1.25 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
{
"name": "hubot-geocode-store",
"version": "0.0.0",
"description": "Hubot plugin for geocoding physical and ip addresses",
"main": "src/index.js",
"repository": "https://github.com/gfax/hubot-geocode-store",
"author": "Jay Thomas <[email protected]>",
"license": "GPL-3.0",
"scripts": {
"codecov": "nyc report --reporter=text-lcov > coverage.lcov && codecov",
"eslint": "eslint . --ext .json --ext .js",
"eslint:fix": "npm run eslint -- --fix",
"nyc": "nyc ava '**/*.spec.js'",
"start": "hubot",
"test": "npm run eslint && npm run nyc"
},
"nyc": {
"exclude": [
"**/*.spec.js"
],
"report-dir": "./coverage",
"reporter": [
"json",
"text",
"html"
]
},
"devDependencies": {
"ava": "^0.25.0",
"codecov": "^3.1.0",
"eslint": "^4.10.0",
"eslint-plugin-json": "^1.3.2",
"eslint-plugin-unicorn": "^2.1.2",
"hubot": "^3.1.1",
"nyc": "^13.1.0",
"sinon": "^7.1.1"
},
"dependencies": {},
"keywords": [
"api",
"hubot",
"hubot-script",
"hubot-scripts",
"geocode",
"geolocate",
"geolocation",
"lookup",
"geocod",
"geocod.io",
"geocod-io",
"here",
"here.com",
"ip-api",
"ipapi",
"latitude",
"longitude"
]
}