-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
83 lines (83 loc) · 2.02 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
83
{
"name": "aws-architect",
"version": "0.0.0",
"description": "AWS Architect is a node based tool to configure and deploy AWS-based microservices.",
"main": "index.js",
"types": "index.d.ts",
"files": [
"index.js",
"index.d.ts",
"lib",
"bin"
],
"scripts": {
"lint": "eslint --ext .js tests lib index.js",
"test": "mocha tests/**/*.js -R spec"
},
"bin": {
"aws-architect": "./bin/aws-architect.js"
},
"dependencies": {
"archiver": "^5.3.0",
"axios": "0.28",
"body-parser": "^1.18.2",
"commander": "^2.5.0",
"cookie-parser": "^1.4.2",
"express": "^5",
"fs-extra": "^6.0.1",
"header-case-normalizer": "^1.0.3",
"json-stringify-safe": "^5.0.1",
"lodash.clonedeep": "^4.5.0",
"lodash.isequal": "^4.5.0",
"mime-types": "^2.1.27",
"morgan": "^1.9.1",
"short-uuid": "^4.2.0",
"tmp": "^0.0.33"
},
"peerDependencies": {
"aws-sdk": ">=2.877.0"
},
"devDependencies": {
"@authress/eslint-config": "^1.0.2",
"aws-sdk": "*",
"chai": "^3.5.0",
"error-object-polyfill": "^1.1.14",
"eslint": "~8.35.0",
"eslint-config-cimpress-atsquad": "^1.0.67",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-mocha": "^10.0.5",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^6.1.1",
"glob": "^5.0.15",
"mocha": "^10.1.0",
"sinon": "^1.17.3"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Rhosys/aws-architect.js.git"
},
"keywords": [
"aws",
"cloudfront",
"package creation",
"microservice",
"api gateway",
"serverless",
"api gateway",
"aws api gateway",
"lambda",
"aws lambda",
"amazon",
"amazon web services",
"dynamodb"
],
"author": "Rhosys Developers <developers@rhosys.ch> (https://rhosys.ch)",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/Rhosys/aws-architect.js/issues"
},
"homepage": "https://github.com/Rhosys/aws-architect.js#readme",
"engines": {
"node": ">=12.20"
}
}