forked from Enase/serverless-aws-alias
-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
62 lines (62 loc) · 1.51 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
{
"name": "serverless-aws-alias-v3",
"version": "3.2.0",
"description": "Serverless v3 plugin to support AWS function aliases",
"main": "index.js",
"repository": {
"type": "git",
"url": "https://github.com/Psycholive/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",
"aws",
"lambda",
"alias",
"aliases"
],
"bugs": {
"url": "https://github.com/serverless-heaven/serverless-aws-alias/issues"
},
"homepage": "https://github.com/Psycholive/serverless-aws-alias#readme",
"nyc": {
"exclude": [
"test/**/*.*"
],
"reporter": [
"lcov",
"text-summary"
],
"report-dir": "./coverage"
},
"dependencies": {
"bluebird": "^3.7.2",
"chalk": "^4.1.0",
"lodash": "^4.17.20",
"moment": "^2.29.1",
"os": "^0.1.1",
"semver": "^7.3.4"
},
"devDependencies": {
"chai": "^4.2.0",
"chai-as-promised": "^7.1.1",
"chai-subset": "^1.6.0",
"coveralls": "^3.1.0",
"eslint": "^6.8.0",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-lodash": "^7.1.0",
"eslint-plugin-promise": "^4.2.1",
"get-installed-path": "^4.0.8",
"mocha": "^8.2.1",
"nyc": "^15.1.0",
"serverless": "^3.0.0",
"sinon": "^9.2.3",
"sinon-chai": "^3.5.0"
}
}