-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
57 lines (57 loc) · 1.5 KB
/
Copy pathpackage.json
File metadata and controls
57 lines (57 loc) · 1.5 KB
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
{
"name": "serverless-plugin-integration-request",
"version": "1.0.7",
"engines": {
"node": ">=6.0"
},
"description": "Serverless plugin to mapping custom integration request on aws api gateway",
"main": "lib/index.js",
"files": [
"lib",
"src"
],
"scripts": {
"lint": "eslint .",
"test": "echo \"Error: no test specified\" && exit 1",
"build:node": "cross-env BABEL_ENV=production babel src --out-dir lib",
"build": "npm run build:node"
},
"repository": {
"type": "git",
"url": "git+https://github.com/contamobi/serverless-plugin-integration-request.git"
},
"keywords": [
"serverless",
"serverless applications",
"aws",
"aws lambda",
"http-proxy",
"request integration",
"serverless.com"
],
"author": "daniel.oliveira@conta.mobi",
"license": "MIT",
"bugs": {
"url": "https://github.com/contamobi/serverless-plugin-integration-request/issues"
},
"homepage": "https://github.com/contamobi/serverless-plugin-integration-request#readme",
"dependencies": {
"lodash": "4.17.4"
},
"devDependencies": {
"babel-cli": "6.24.0",
"babel-core": "6.21.0",
"babel-eslint": "7.1.1",
"babel-plugin-add-module-exports": "0.2.1",
"babel-preset-node6": "11.0.0",
"babel-preset-stage-1": "6.16.0",
"babel-register": "6.26.0",
"cross-env": "3.1.4",
"eslint": "3.13.1",
"eslint-config-standard": "6.2.1",
"eslint-plugin-standard": "2.0.1"
},
"peerDependencies": {
"serverless": ">= 1.26.0"
}
}