forked from serverless-heaven/serverless-aws-alias
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
63 lines (63 loc) · 1.53 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
{
"name": "serverless-aws-alias",
"version": "1.8.0",
"description": "Serverless plugin to support AWS function aliases",
"main": "index.js",
"repository": {
"type": "git",
"url": "https://github.com/serverless-heaven/serverless-aws-alias"
},
"scripts": {
"test": "nyc ./node_modules/mocha/bin/_mocha \"test/**/*.js\" -R spec --recursive",
"eslint": "node node_modules/eslint/bin/eslint.js --ext .js lib"
},
"author": "Frank Schmid <[email protected]>",
"license": "MIT",
"keywords": [
"serverless",
"plugin",
"1.0",
"aws",
"lambda",
"alias",
"aliases"
],
"bugs": {
"url": "https://github.com/serverless-heaven/serverless-aws-alias/issues"
},
"homepage": "https://github.com/serverless-heaven/serverless-aws-alias#readme",
"nyc": {
"exclude": [
"test/**/*.*"
],
"reporter": [
"lcov",
"text-summary"
],
"report-dir": "./coverage"
},
"dependencies": {
"bluebird": "^3.7.0",
"chalk": "^2.4.2",
"lodash": "^4.17.15",
"moment": "^2.24.0",
"os": "^0.1.1",
"semver": "^6.3.0"
},
"devDependencies": {
"chai": "^4.2.0",
"chai-as-promised": "^7.1.1",
"chai-subset": "^1.6.0",
"coveralls": "^3.0.6",
"eslint": "^6.8.0",
"eslint-plugin-import": "^2.18.2",
"eslint-plugin-lodash": "^6.0.0",
"eslint-plugin-promise": "^4.2.1",
"get-installed-path": "^4.0.8",
"mocha": "^6.2.1",
"nyc": "^14.1.1",
"serverless": "^1.53.0",
"sinon": "^7.5.0",
"sinon-chai": "^3.3.0"
}
}