-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
62 lines (62 loc) · 1.42 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
{
"name": "find-lat-lng-cli",
"version": "1.0.0",
"description": "Find latitude and longitude for a list of addresses",
"main": "index.js",
"scripts": {
"test": "jest",
"precommit": "lint-staged"
},
"repository": {
"type": "git",
"url": "git+https://github.com/motleyagency/find-lat-lng-cli.git"
},
"keywords": [
"googlemaps",
"maps",
"latitude",
"longitude",
"addresses",
"address"
],
"bin": {
"find-lat-lng": "cli.js"
},
"engines": {
"node": ">=8"
},
"files": [
"cli.js"
],
"author": "Pete Nykänen <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/motleyagency/find-lat-lng-cli/issues"
},
"homepage": "https://github.com/motleyagency/find-lat-lng-cli#readme",
"lint-staged": {
"*.js": [
"prettier --single-quote --trailing-comma all --write",
"git add"
]
},
"devDependencies": {
"eslint": "^4.16.0",
"eslint-config-airbnb": "^16.1.0",
"eslint-config-airbnb-base": "^12.1.0",
"eslint-config-motley": "^8.0.1",
"eslint-config-prettier": "^2.9.0",
"eslint-plugin-import": "^2.8.0",
"eslint-plugin-jsx-a11y": "^6.0.3",
"eslint-plugin-react": "^7.6.0",
"husky": "^0.14.3",
"jest": "^22.1.4",
"lint-staged": "^4.3.0",
"prettier": "^1.10.2"
},
"dependencies": {
"find-lat-lng": "^1.0.0",
"dotenv": "^4.0.0",
"meow": "^4.0.0"
}
}