-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
34 lines (34 loc) · 835 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
{
"name": "serverless-apigateway-service-proxy",
"version": "0.3.0",
"description": "The Serverless Framewrok plugin for supporting AWS service proxy integration of API Gateway",
"main": "lib/index.js",
"scripts": {
"lint": "eslint .",
"test": "jest tests.js",
"fmt": "eslint . --fix --cache",
"precommit": "lint-staged"
},
"lint-staged": {
"*.js": [
"eslint . --fix --cache",
"git add"
]
},
"devDependencies": {
"chai": "^4.2.0",
"eslint": "^5.8.0",
"eslint-config-prettier": "^3.1.0",
"eslint-plugin-import": "^2.14.0",
"eslint-plugin-prettier": "^3.0.0",
"husky": "^1.1.3",
"jest": "^23.6.0",
"lint-staged": "^8.0.4",
"prettier": "1.14.3"
},
"dependencies": {
"serverless": "^1.36.3"
},
"author": "horike37",
"license": "MIT"
}