-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
82 lines (82 loc) · 1.58 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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
{
"name": "aws-lightsail",
"version": "1.0.0",
"description": "A microservice for AWS lightsail.",
"main": "index.js",
"directories": {
"test": "tests"
},
"scripts": {
"eslint": "semistandard --verbose | snazzy",
"test": "node tests/test.js",
"testcov": "nyc mocha"
},
"lambda_memory": 512,
"lambda_timeout": 42,
"repository": {
"type": "git",
"url": "git+https://github.com/alaninchika/aws-lightsail.git"
},
"keywords": [
"AWS",
"Amazon",
"Lambda",
"Lightsail",
"function",
"api-gateway",
"aws-lambda",
"aws-lightsail",
"cloudformation",
"microservice"
],
"author": "Alan Koroma",
"license": "MIT",
"bugs": {
"url": "https://github.com/alaninchika/aws-lightsail/issues"
},
"homepage": "https://github.com/alaninchika/aws-lightsail#readme",
"devDependencies": {
"aguid": "^2.0.0",
"eslint": "^4.3.0",
"git-rev": "^0.2.1",
"mocha": "^5.0.1",
"nyc": "^11.4.1",
"sinon": "^1.17.2",
"tape": "^4.2.2"
},
"dependencies": {
"aws-sdk": "^2.149.0",
"axios": ">=0.18.1"
},
"semistandard": {
"rules": {
"no-multi-spaces": [
2,
{
"exceptions": {
"VariableDeclarator": true
}
}
],
"brace-style": [
2,
"stroustrup",
{
"allowSingleLine": true
}
],
"no-trailing-spaces": 0
},
"globals": [
"describe",
"it",
"before",
"after",
"afterEach"
]
},
"pre-commit": [
"eslint",
"check-coverage"
]
}