-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpackage.json
82 lines (82 loc) · 1.58 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
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
{
"name": "geocodio-library-node",
"version": "1.6.1",
"description": "geocod.io geocoding API library",
"homepage": "https://github.com/Geocodio/geocodio-library-node",
"author": {
"name": "Mathias Hansen",
"email": "[email protected]",
"url": "https://www.geocod.io"
},
"files": [
"lib"
],
"main": "lib/index.js",
"keywords": [
"geocoding",
"geocode",
"geo",
"address",
"congress",
"timezone",
"census"
],
"devDependencies": {
"eslint": "^6.8.0",
"eslint-config-prettier": "^6.15.0",
"eslint-config-xo": "^0.26.0",
"eslint-plugin-prettier": "^3.4.0",
"husky": "^3.1.0",
"jest": "^26.6.3",
"lint-staged": "^9.5.0",
"prettier": "^1.19.1"
},
"engines": {
"node": ">= 8.0.0"
},
"lint-staged": {
"*.js": [
"eslint --fix",
"git add"
],
"*.json": [
"prettier --write",
"git add"
]
},
"eslintConfig": {
"extends": [
"xo",
"prettier"
],
"env": {
"jest": true,
"node": true
},
"rules": {
"prettier/prettier": "error",
"camelcase": 0
},
"plugins": [
"prettier"
]
},
"scripts": {
"pretest": "eslint .",
"fix": "eslint . --fix",
"test": "jest",
"toc": "markdown-toc README.md -i"
},
"repository": "Geocodio/geocodio-library-node",
"jest": {
"moduleNameMapper": {
"axios": "<rootDir>/node_modules/axios/dist/node/axios.cjs"
},
"testEnvironment": "node"
},
"license": "MIT",
"dependencies": {
"axios": "^1.6.7",
"form-data": "^4.0.0"
}
}