forked from zodern/mup-aws-beanstalk
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
89 lines (89 loc) · 2.66 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
84
85
86
87
88
89
{
"name": "@lytesoft/mup-aws-beanstalk",
"version": "1.0.44",
"type": "commonjs",
"description": "Deploy apps to AWS Elastic Beanstalk using Meteor Up",
"main": "index.js",
"repository": {
"type": "git",
"url": "git+https://github.com/lytesoft/mup-aws-beanstalk.git"
},
"scripts": {
"prepare": "npm run build",
"build": "tsc --project tsconfig.json && copyfiles -u 1 src/assets/* lib",
"build:watch": "npm run build -s -- -w",
"lint": "npm run lint:code && npm run lint:docs",
"lint:docs": "node ./tests/validate-docs.js",
"lint:code": "eslint .",
"pretest": "npm run lint -s",
"test": "mocha --require babel-register --require babel-polyfill ./tests/*.spec.js"
},
"author": "zodern",
"license": "MIT",
"keywords": [
"meteor-up"
],
"devDependencies": {
"@babel/cli": "^7.23.0",
"@babel/core": "^7.23.2",
"@babel/eslint-parser": "^7.22.15",
"@babel/preset-env": "^7.23.2",
"@types/archiver": "^5.3.4",
"@types/ejs": "^3.1.4",
"@types/lodash": "^4.14.200",
"@types/node": "^20.8.9",
"@types/random-seed": "^0.3.4",
"@types/shell-escape": "^0.2.2",
"@types/ssh2": "^1.11.15",
"@types/uuid": "^9.0.6",
"@typescript-eslint/eslint-plugin": "^5.59.9",
"@typescript-eslint/parser": "^5.59.9",
"chai": "^4.3.10",
"copyfiles": "^2.4.1",
"eslint": "^8.53.0",
"eslint-config-standard": "^17.1.0",
"eslint-plugin-import": "^2.29.0",
"eslint-plugin-jsx-a11y": "^6.7.1",
"eslint-plugin-react": "^7.33.2",
"eslint-plugin-standard": "^5.0.0",
"gfm-code-blocks": "^1.0.0",
"mocha": "^10.2.0",
"shelljs": "^0.8.4",
"standard": "^17.1.0",
"typescript": "^5.2.2"
},
"dependencies": {
"@aws-sdk/client-acm": "^3.348.0",
"@aws-sdk/client-auto-scaling": "^3.350.0",
"@aws-sdk/client-cloudtrail": "^3.348.0",
"@aws-sdk/client-cloudwatch-events": "^3.348.0",
"@aws-sdk/client-cloudwatch-logs": "^3.353.0",
"@aws-sdk/client-ec2": "^3.348.0",
"@aws-sdk/client-ec2-instance-connect": "^3.348.0",
"@aws-sdk/client-elastic-beanstalk": "^3.348.0",
"@aws-sdk/client-iam": "^3.348.0",
"@aws-sdk/client-s3": "^3.348.0",
"@aws-sdk/client-ssm": "^3.348.0",
"@aws-sdk/client-sts": "^3.348.0",
"@aws-sdk/lib-storage": "^3.348.0",
"archiver": "^6.0.1",
"axios": "^1.5.1",
"chalk": "^4.1.2",
"ejs": "^3.1.8",
"joi": "^17.11.0",
"lodash": "^4.17.21",
"random-seed": "^0.3.0",
"shell-escape": "^0.2.0",
"ssh2": "^1.13.0",
"uuid": "^9.0.1"
},
"engines": {
"node": ">=14.0.0"
},
"standard": {
"parser": "@babel/eslint-parser",
"ignore": [
"/node_modules/*"
]
}
}