-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
43 lines (43 loc) · 1.09 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
{
"name": "@joblocal/serverless-invoke-local-environment",
"version": "1.1.0",
"description": "Overwrite serverless environment to enable local development.",
"main": "src/index.js",
"author": "Joblocal GmbH",
"license": "MIT",
"scripts": {
"lint": "eslint .",
"test": "jest",
"test:coverage": "jest --coverage",
"validate": "npm-run-all --parallel lint test"
},
"peerDependencies": {
"serverless": "^2.25.0"
},
"devDependencies": {
"eslint": "^6",
"eslint-config-airbnb-base": "^14",
"eslint-plugin-import": "^2.14.0",
"git-hooks": "^1.1.10",
"jest": "^24",
"npm-run-all": "^4.1.5"
},
"dependencies": {
"dotenv": "^8.2.0"
},
"keywords": [
"serverless",
"environment",
"aws",
"invoke",
"local"
],
"repository": {
"type": "git",
"url": "git+https://github.com/joblocal/serverless-invoke-local-environment.git"
},
"bugs": {
"url": "https://github.com/joblocal/serverless-invoke-local-environment/issues"
},
"homepage": "https://github.com/joblocal/serverless-invoke-local-environment#readme"
}