forked from ehourigan/mup-aws-beanstalk
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
53 lines (53 loc) · 1.55 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
{
"name": "@fractal-code/mup-aws-beanstalk",
"version": "0.7.0",
"description": "Deploy apps to AWS Elastic Beanstalk using Meteor Up",
"main": "index.js",
"scripts": {
"prepare": "npm run build",
"build": "babel src --out-dir lib --copy-files --source-maps",
"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.10.1",
"@babel/core": "^7.10.2",
"babel-eslint": "^8.0.1",
"@babel/plugin-proposal-object-rest-spread": "7.10.3",
"@babel/plugin-transform-modules-commonjs": "7.10.1",
"@babel/plugin-proposal-class-properties": "7.10.1",
"chai": "^4.1.2",
"eslint": "^4.10.0",
"eslint-config-airbnb": "^16.1.0",
"eslint-plugin-import": "^2.7.0",
"eslint-plugin-jsx-a11y": "^6.0.2",
"eslint-plugin-react": "^7.4.0",
"gfm-code-blocks": "^1.0.0",
"mocha": "^5.0.0",
"mup": "^1.3.7",
"shelljs": "^0.7.8"
},
"dependencies": {
"archiver": "^2.1.0",
"aws-sdk": "^2.145.0",
"axios": "^0.17.1",
"babel-polyfill": "^6.26.0",
"chalk": "^2.3.0",
"ejs": "^2.5.7",
"joi": "^10.6.0",
"lodash": "^4.17.4",
"random-seed": "^0.3.0",
"shell-escape": "^0.2.0",
"tar": "^4.0.2",
"uuid": "^3.1.0"
}
}