-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
36 lines (36 loc) · 929 Bytes
/
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
{
"name": "serverless-plugin-parent",
"version": "0.0.5",
"description": "Serverless plugin to share common configuration between services",
"main": "src/index.js",
"scripts": {
"lint": "standard src/**",
"lint:fix": "standard --fix src/**"
},
"author": "Kevin W. Sewell",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/aronim/serverless-plugin-parent.git"
},
"keywords": [
"serverless plugin parent lambdas",
"serverless parent",
"serverless plugin",
"lambda serverless",
"parent configuration",
"shared config"
],
"bugs": {
"url": "https://github.com/aronim/serverless-plugin-parent/issues"
},
"homepage": "https://github.com/aronim/serverless-plugin-parent",
"dependencies": {
"bluebird": "^3.5.1",
"js-yaml": "^3.11.0",
"lodash": "^4.17.10"
},
"peerDependencies": {
"serverless": "^3.26.0"
}
}