This repository has been archived by the owner on Jul 2, 2019. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathpackage.json
executable file
·67 lines (67 loc) · 1.8 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
{
"name": "serverless-plugin-elastic-beanstalk",
"description": "A serverless plugin to deploy applications to AWS ElasticBeanstalk.",
"version": "1.5.1",
"main": "dist/index.js",
"license": "MIT",
"scripts": {
"prebuild": "yarn run clear",
"build": "tsc",
"prerelease": "yarn build && yarn version",
"clear": "rm -rf dist",
"watch": "npm-watch",
"lint": "tslint -c tslint.json 'src/**/*.ts'",
"test": "env TZ='UTC' NODE_ENV=test mocha --require ts-node/register test/src/*.test.ts test/src/**/*.test.ts",
"version": "version-changelog CHANGELOG.md && changelog-verify CHANGELOG.md && git add CHANGELOG.md"
},
"engines": {
"node": ">=6.10"
},
"repository": {
"type": "git",
"url": "[email protected]:rawphp/serverless-plugin-elastic-beanstalk.git"
},
"keywords": [
"serverless",
"plugin",
"aws",
"elastic",
"beanstalk",
"command",
"CLI"
],
"dependencies": {
"aws-sdk": "2.x.x",
"bluebird": "3.x.x",
"bundle-bundler": "0.2.x",
"fs-promise": "2.x.x"
},
"devDependencies": {
"@types/bluebird": "3.x.x",
"@types/chai": "4.x.x",
"@types/fs-promise": "1.x.x",
"@types/mocha": "2.x.x",
"@types/node": "7.x.x",
"awesome-typescript-loader": "3.x.x",
"babel-cli": "6.x.x",
"babel-core": "6.x.x",
"babel-eslint": "7.x.x",
"babel-loader": "6.x.x",
"babel-preset-env": "1.x.x",
"babel-preset-stage-3": "6.x.x",
"chai": "3.x.x",
"changelog-verify": "1.x.x",
"esdoc": "0.x.x",
"esdoc-es7-plugin": "0.x.x",
"mocha": "3.x.x",
"serverless": "^1.32.0",
"sinon": "1.x.x",
"ts-node": "3.x.x",
"tslint": "5.x.x",
"typescript": "2.x.x",
"version-changelog": "2.x.x",
"webpack": "2.x.x",
"yamljs": "0.x.x",
"zip-unzip-promise": "1.0.0"
}
}