-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
57 lines (57 loc) · 1.45 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
{
"name": "serverless-http-invoker",
"version": "0.8.6",
"description": "Locally invoke Serverless functions via their HTTP event as specified in Serverless.yml for testing.",
"main": "index.js",
"author": "Scott Willeke <[email protected]> (https:/scott.willeke.com/)",
"license": "MIT",
"keywords": [
"serverless",
"serverless framework",
"serverless applications",
"serverless modules",
"api gateway",
"lambda",
"aws",
"aws lambda",
"amazon",
"amazon web services",
"serverless.com",
"mocha",
"test",
"testing",
"bdd",
"tdd"
],
"engines": {
"node": ">=14"
},
"repository": {
"type": "git",
"url": "https://github.com/activescott/serverless-http-invoker.git"
},
"bugs": {
"url": "https://github.com/activescott/serverless-http-invoker/issues"
},
"scripts": {
"test": "nyc ./node_modules/.bin/mocha ./examples/**/*.spec.js",
"pretest": "npm run lint",
"lint": "prettier -l \"{,!(node_modules)/**/}*.{ts,tsx,js,jsx,md,yml,json,html}\"",
"lint-fix": "prettier --write \"{,!(node_modules)/**/}*.{ts,tsx,js,jsx,md,yml,json,html}\""
},
"dependencies": {
"lambda-wrapper": "^0.3.0",
"yaml": "^2.1.1"
},
"peerDependencies": {
"serverless": "^3.22.0"
},
"devDependencies": {
"chai": "^4.3.6",
"chai-as-promised": "^7.1.1",
"mocha": "^10.0.0",
"nyc": "^15.1.0",
"prettier": "^2.7.1",
"serverless": "^3.31.0"
}
}