-
-
Notifications
You must be signed in to change notification settings - Fork 12
/
package.json
59 lines (59 loc) · 1.55 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": "opencage-api-client",
"version": "1.0.7",
"description": "An OpenCageData Geocoder API client library for node and browsers (UMD)",
"main": "index.js",
"browser": "dist/opencage-api.min.js",
"unpkg": "dist/opencage-api.min.js",
"types": "index.d.ts",
"scripts": {
"build": "webpack --mode production",
"docs": "npx documentation build src/** -f html -o docs",
"lint": "eslint .",
"lint:fix": "eslint --fix .",
"test": "jest --coverage",
"test:watch": "jest --watch",
"prepare": "husky install"
},
"keywords": [
"geocoder",
"api",
"opencage",
"opencagedata"
],
"author": "Arnaud Ferrand",
"license": "MIT",
"devDependencies": {
"documentation": "^14.0.0",
"eslint": "^8.53.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-import": "^2.29.0",
"eslint-plugin-jest": "^28.0.0",
"eslint-plugin-prettier": "^5.0.1",
"husky": "^9.0.0",
"jest": "^29.7.0",
"lint-staged": "^15.0.2",
"prettier": "^3.0.3",
"webpack": "^5.89.0",
"webpack-cli": "^5.0.1"
},
"dependencies": {
"cross-fetch": "4.0.0",
"dotenv": "16.4.5"
},
"repository": {
"type": "git",
"url": "git+https://github.com/tsamaya/opencage-api-client.git"
},
"bugs": {
"url": "https://github.com/tsamaya/opencage-api-client/issues"
},
"homepage": "https://github.com/tsamaya/opencage-api-client#readme",
"lint-staged": {
"*.{json,md,yml,yaml}": [
"prettier --write"
],
"*.js": "eslint --cache --fix"
}
}