forked from mikestaub/serverless-express
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
47 lines (47 loc) · 1.13 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
{
"name": "serverless-express",
"version": "2.0.11",
"description": "Run express apps on AWS λ easily.",
"main": "index.js",
"scripts": {
"test": "jest --verbose",
"test:watch": "jest --verbose --watch",
"deploy": "jest --coverage && cat ./coverage/lcov.info | ./node_modules/.bin/coveralls && git push origin master"
},
"keywords": [
"Serverless",
"Express",
"Lambda",
"API Gateway",
"APIG",
"Nodejs"
],
"author": "Michael Staub, Ilias Bhallil",
"repository": {
"type": "git",
"url": "https://github.com/mikestaub/serverless-express"
},
"license": "MIT",
"devDependencies": {
"aws-event-mocks": "github:serverless/aws-event-mocks",
"aws-lambda-mock-context": "^3.1.1",
"chai": "^4.1.2",
"coveralls": "^3.0.0",
"husky": "^1.2.0",
"jest": "^22.2.2",
"lodash": "^4.17.5",
"sinon": "^4.3.0",
"sinon-chai": "^2.14.0",
"supertest": "^3.1.0"
},
"dependencies": {
"aws-serverless-express": "^3.1.3",
"azure-aws-serverless-express": "^0.1.5",
"express": "^4.16.2"
},
"husky": {
"hooks": {
"pre-push": "npm test"
}
}
}