-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
38 lines (38 loc) · 819 Bytes
/
package.json
File metadata and controls
38 lines (38 loc) · 819 Bytes
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
{
"name": "serverless-base-path-plugin",
"version": "0.0.1",
"engines": {
"node": ">=4.0"
},
"description": "Serverless Base Path Plugin - Set a base API path for all function endpoints.",
"author": "John Wells",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/daffinity/serverless-base-path-plugin"
},
"keywords": [
"serverless plugin base path",
"serverless framework plugin",
"serverless applications",
"serverless plugins",
"api gateway",
"lambda",
"aws",
"aws lambda",
"amazon",
"amazon web services"
],
"main": "index.js",
"bin": {},
"scripts": {
"test": "mocha tests/all"
},
"devDependencies": {
"chai": "^3.2.0",
"mocha": "^2.2.5"
},
"dependencies": {
"bluebird": "^3.0.6"
}
}