-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
53 lines (53 loc) · 1.21 KB
/
Copy pathpackage.json
File metadata and controls
53 lines (53 loc) · 1.21 KB
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
{
"name": "@alpha-lambda/handler",
"version": "1.3.0",
"description": "Middleware pipeline for AWS Lambda handlers",
"repository": {
"type": "git",
"url": "https://github.com/alpha-lambda/handler-node.git"
},
"keywords": [
"aws",
"aws lambda",
"function",
"lambda",
"middleware",
"serverless",
"wrap",
"wrapper"
],
"main": "lib/handler.js",
"scripts": {
"lint": "eslint .",
"test": "nyc --all mocha",
"posttest": "npm run lint",
"coveralls": "nyc report --reporter=text-lcov | coveralls"
},
"author": {
"name": "Anton Bazhal",
"email": "am.bazhal@gmail.com",
"url": "https://github.com/AntonBazhal"
},
"contributors": [
{
"name": "Doug Moscrop",
"email": "doug.moscrop@gmail.com",
"url": "https://www.github.com/dougmoscrop"
}
],
"license": "MIT",
"devDependencies": {
"chai": "^4.1.1",
"coveralls": "^3.0.4",
"env-test": "^1.0.0",
"eslint": "^5.16.0",
"eslint-config-airbnb-base": "^13.1.0",
"eslint-plugin-import": "^2.17.3",
"eslint-plugin-mocha": "^6.3.0",
"mocha": "^6.1.4",
"nyc": "^14.1.1",
"publish": "^0.6.0",
"sinon": "^7.3.2"
},
"dependencies": {}
}