-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
81 lines (81 loc) · 1.93 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
{
"name": "hexagonal-lambda",
"version": "1.2.0",
"description": "Sample AWS Lambda and API Gateway application using hexagonal architecture",
"scripts": {
"build": "echo webpack… && webpack && echo ✓ && node ./bin/zip-lambdas.js",
"coverage": "NODE_ENV=test tap --jobs-auto --coverage-report=html 'code/**/*-tap.js'",
"lint": "eslint code bin",
"smoke": "tap code/**/smoke-tests.js",
"test": "NODE_ENV=test tap --jobs-auto --100 'code/**/*-tap.js'",
"openapi": "node ./bin/build-openapi.js",
"deploy-apig": "node ./bin/deploy-apig.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/focusaurus/hexagonal-lambda.git"
},
"keywords": [
"AWS",
"lambda",
"API",
"Gateway",
"hexagonal",
"ports",
"and",
"adapters"
],
"nyc": {
"exclude": [
"**/*-tap.js"
],
"watermarks": {
"branches": [
90,
100
],
"functions": [
80,
100
],
"lines": [
80,
100
],
"statements": [
80,
100
]
}
},
"author": "Peter Lyons <[email protected]> (http://peterlyons.com/)",
"license": "MIT",
"bugs": {
"url": "https://github.com/focusaurus/hexagonal-lambda/issues"
},
"homepage": "https://github.com/focusaurus/hexagonal-lambda#readme",
"devDependencies": {
"eslint": "^5.6.1",
"eslint-config-airbnb-base": "^13.1.0",
"eslint-config-prettier": "^3.1.0",
"eslint-plugin-import": "^2.11.0",
"glob": "^7.1.2",
"lodash.merge": "^4.6.1",
"nock": "10.0.0",
"npm-check-updates": "^2.14.2",
"null-console": "1.0.1",
"sinon": "6.3.4",
"tap": "12.0.1",
"touch": "3.1.0",
"webpack": "4.20.2",
"webpack-cli": "^3.1.2"
},
"dependencies": {
"ajv": "6.5.4",
"lodash.get": "4.4.2",
"lodash.set": "4.3.2",
"mintsauce": "0.1.1",
"request": "2.88.0",
"uppercase-keys": "1.1.1"
}
}