This repository has been archived by the owner on Mar 20, 2023. It is now read-only.
forked from Nedvedyy/serverless-apigateway-plugin
-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
51 lines (51 loc) · 1.45 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
{
"name": "serverless-apigateway-plugin",
"version": "0.0.10",
"description": "this is the serverless plugin to customize the aws api gateway",
"main": "index.js",
"repository": {
"type": "git",
"url": "git+https://github.com/GFG/serverless-apigateway-plugin.git"
},
"files": [
"lib",
"src"
],
"keywords": [
"serverless",
"aws gateway"
],
"author": "GFG",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/GFG/serverless-apigateway-plugin/issues"
},
"dependencies": {
"aws-sdk": "^2.72.0",
"bluebird": "^3.5.1"
},
"devDependencies": {
"chai": "^4.1.2",
"eslint": "^3.17.1",
"eslint-config-airbnb-base": "^11.1.1",
"gfg-cicd-scripts": "git+ssh://[email protected]/GFG/gfg-cicd-scripts.git#v1.1.1",
"eslint-plugin-import": "^2.2.0",
"istanbul": "1.1.0-alpha.1",
"mocha": "^3.4.0",
"pre-commit": "^1.2.2",
"sinon": "^2.3.8",
"babel-core": "^6.24.0",
"babel-preset-latest": "^6.24.0"
},
"homepage": "https://github.com/GFG/serverless-apigateway-plugin#readme",
"scripts": {
"release": "sh ops/release.sh",
"eslint": "node_modules/.bin/eslint ./**/*.js",
"validate": "npm ls",
"test": "node_modules/.bin/mocha --compilers js:babel-core/register *.test.js",
"coverage": "node_modules/.bin/istanbul cover node_modules/.bin/_mocha -- --compilers js:babel-core/register --colors --recursive *.test.js"
},
"pre-commit": [
"eslint"
]
}