-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
37 lines (37 loc) · 788 Bytes
/
package.json
File metadata and controls
37 lines (37 loc) · 788 Bytes
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
{
"name": "lambda-executor",
"version": "0.1.0",
"description": "A library to easily execute lambda functions",
"author": "Christoph Kraemer <christoph@kraemer.io>",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/samanio/lambda-executor"
},
"bugs": {
"url": "https://github.com/samanio/lambda-executor/issues"
},
"keywords": [
"serverless",
"aws",
"lambda",
"test",
"local",
"testing",
"locally",
"execute"
],
"main": "src/index.js",
"scripts": {
"test": "./node_modules/.bin/mocha"
},
"devDependencies": {
"babel-preset-es2015": "^6.6.0",
"eslint": "^2.4.0",
"expect": "^1.15.2",
"mocha": "^2.4.5"
},
"optionalDependencies": {
"babel-core": "^6.7.2"
}
}