-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
43 lines (43 loc) · 1.04 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
{
"name": "@kakkuk/serverless-aws-apigateway-documentation",
"version": "1.3.1",
"description": "Serverless 1.0 plugin to add documentation and models to the serverless generated API Gateway",
"main": "src/index.js",
"scripts": {
"codecov": "cat coverage/*/lcov.info | codecov",
"test": "jest",
"lint": "npx eslint",
"lint:fix": "npx eslint --fix"
},
"repository": "git@github.com:failsafe-engineering/serverless-aws-apigateway-documentation.git",
"author": "Failsafe Engineering Team",
"license": "MIT",
"devDependencies": {
"codecov": "^3.8.3",
"eslint": "^8.11.0",
"jest": "^27.5.1"
},
"dependencies": {
"object-hash": "^1.1.7",
"yaml": "^2.3.4"
},
"jest": {
"testEnvironment": "node",
"modulePaths": [
"./src"
],
"transformIgnorePatterns": [
"node_modules/"
],
"verbose": true,
"collectCoverage": true,
"coverageReporters": [
"text",
"lcov",
"text-summary"
],
"coveragePathIgnorePatterns": [
"/node_modules/"
]
}
}