-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
52 lines (52 loc) · 1.36 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
{
"name": "aws-lambda-opencage-geocoder",
"version": "0.2.0",
"description": "AWS Lambda Wrapper for OpenCage Data Geocoder API",
"main": "index.js",
"scripts": {
"codecov": "codecov",
"coverage": "npm run test && npm run codecov",
"lint": "eslint .",
"start": "serverless offline start",
"pretest": "npm run lint",
"test": "jest --coverage",
"test:watch": "npm test -- --watch"
},
"repository": {
"type": "git",
"url": "git+https://github.com/tsamaya/aws-lambda-opencage-geocoder.git"
},
"keywords": [
"geocoder",
"api",
"opencage",
"opencagedata",
"serverless",
"aws",
"lambda",
"faas"
],
"author": "Arnaud Ferrand",
"license": "MIT",
"bugs": {
"url": "https://github.com/tsamaya/aws-lambda-opencage-geocoder/issues"
},
"homepage": "https://github.com/tsamaya/aws-lambda-opencage-geocoder#readme",
"dependencies": {
"dotenv": "^16.0.3",
"opencage-api-client": "^1.0.0"
},
"devDependencies": {
"codecov": "^3.8.3",
"eslint": "^8.30.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-jest": "^27.1.7",
"eslint-plugin-prettier": "^4.2.1",
"jest": "^29.3.1",
"prettier": "^2.8.1",
"serverless-env-generator": "^1.1.2",
"serverless-offline": "^12.0.3"
}
}