-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
42 lines (42 loc) · 1.16 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
{
"name": "serverless-endpoint",
"version": "0.1.0",
"description": "Dependency-less express like wrapper for serverless functions.",
"main": "index.js",
"scripts": {
"test": "node node_modules/.bin/jest --coverage && cat ./coverage/lcov.info | ./node_modules/coveralls/bin/coveralls.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/emmoistner/serverless-endpoint.git"
},
"keywords": [
"Serverless",
"Amazon Web Services",
"AWS",
"Lambda",
"API Gateway"
],
"author": "Ethan Moistner <[email protected]> ([email protected])",
"contributors": [
"Brad Imbierowicz (https://github.com/bimbiero)"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/emmoistner/serverless-endpoint/issues"
},
"homepage": "https://github.com/emmoistner/serverless-endpoint#readme",
"devDependencies": {
"coveralls": "^2.12.0",
"eslint": "^3.17.1",
"eslint-config-airbnb": "^14.1.0",
"eslint-plugin-import": "^2.2.0",
"eslint-plugin-jsx-a11y": "^4.0.0",
"eslint-plugin-react": "^6.10.0",
"jest": "^19.0.2"
},
"jest": {
"testEnvironment": "node",
"automock": true
}
}