-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
71 lines (71 loc) · 1.87 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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
{
"name": "serverless-apigateway-service-proxy",
"version": "2.2.0",
"description": "The Serverless Framework plugin for supporting AWS service proxy integration of API Gateway",
"main": "lib/index.js",
"scripts": {
"lint": "eslint .",
"integration-test": "jest --maxWorkers=5 integration",
"test": "mocha '!(node_modules)/**/*.test.js'",
"coverage": "nyc npm test",
"test:watch": "_mocha '!(node_modules)/**/*.test.js' --watch",
"fmt": "eslint . --fix --cache",
"semantic-release": "semantic-release"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged",
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
},
"lint-staged": {
"*.js": [
"eslint"
]
},
"dependencies": {
"@hapi/joi": "^15.1.0",
"common-tags": "^1.8.0"
},
"peerDependencies": {
"serverless": "3"
},
"jest": {
"setupFilesAfterEnv": [
"<rootDir>/__tests__/setup-tests.js"
]
},
"author": "horike37",
"license": "MIT",
"devDependencies": {
"@commitlint/cli": "^17.1.2",
"@commitlint/config-conventional": "^8.1.0",
"aws-sdk": "^2.496.0",
"aws-testing-library": "^1.0.8",
"chai": "^4.2.0",
"chai-as-promised": "^7.1.1",
"coveralls": "^3.0.5",
"eslint": "^6.0.1",
"eslint-config-prettier": "^6.0.0",
"eslint-plugin-import": "^2.18.2",
"eslint-plugin-prettier": "^3.1.0",
"husky": "^3.0.1",
"jest-circus": "^24.8.0",
"jest-cli": "^24.8.0",
"js-yaml": "^3.13.1",
"lint-staged": "^9.2.0",
"mocha": "^6.2.0",
"mocha-lcov-reporter": "^1.3.0",
"node-fetch": "^2.6.0",
"nyc": "^15.1.0",
"prettier": "^1.18.2",
"semantic-release": "^19.0.3",
"serverless": "^3.7.5",
"sinon": "^7.3.2",
"sinon-chai": "^3.3.0"
},
"repository": {
"type": "git",
"url": "https://github.com/horike37/serverless-apigateway-service-proxy.git"
}
}