-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
51 lines (51 loc) · 1.15 KB
/
Copy pathpackage.json
File metadata and controls
51 lines (51 loc) · 1.15 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
{
"name": "alpha-lambda",
"version": "1.1.0",
"description": "Tiny wrapper that ensures that AWS Lambda function's callback is always called",
"repository": {
"type": "git",
"url": "https://github.com/AntonBazhal/alpha-lambda.git"
},
"keywords": [
"aws",
"aws lambda",
"function",
"lambda",
"middleware",
"serverless",
"wrap",
"wrapper"
],
"main": "lib/handler.js",
"scripts": {
"preinstall": "npm prune",
"lint": "eslint .",
"test": "nyc --all mocha",
"posttest": "npm run lint"
},
"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",
"env-test": "^1.0.0",
"eslint": "^4.4.1",
"eslint-config-airbnb-base": "^11.3.1",
"eslint-plugin-import": "^2.2.0",
"eslint-plugin-mocha": "^4.9.0",
"mocha": "^3.5.0",
"nyc": "^11.1.0",
"sinon": "^3.2.0"
},
"dependencies": {}
}