-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
45 lines (45 loc) · 1.08 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
{
"name": "claudia-local",
"version": "1.0.0",
"description": "Test serverless functions built by Claudia.js locally",
"main": "index.js",
"scripts": {
"pretest": "eslint lib spec *.js",
"test": "node spec/support/jasmine-runner.js",
"debug": "node debug spec/support/jasmine-runner.js"
},
"author": "Slobodan Stojanović <[email protected]> (http://slobodan.me)",
"license": "MIT",
"dependencies": {
"aws-sdk": "^2.185.0",
"minimist": "^1.2.0"
},
"bin": {
"claudia-local": "./bin/claudia-local.js"
},
"devDependencies": {
"eslint": "^4.16.0",
"jasmine": "^2.9.0",
"jasmine-spec-reporter": "^4.2.1"
},
"directories": {
"lib": "lib"
},
"repository": {
"type": "git",
"url": "git+https://github.com/stojanovic/claudia-local.git"
},
"keywords": [
"aws",
"lambda",
"local",
"docker-lambda",
"serverless",
"claudia",
"claudiajs"
],
"bugs": {
"url": "https://github.com/stojanovic/claudia-local/issues"
},
"homepage": "https://github.com/stojanovic/claudia-local#readme"
}