-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
83 lines (83 loc) · 1.86 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
72
73
74
75
76
77
78
79
80
81
82
83
{
"name": "serverless-disable-request-validators",
"version": "1.0.3",
"description": "Serverless plugin to disable Request Validators from API Gateway",
"author": "Jardel Weyrich",
"license": "MIT",
"main": "dist/index.js",
"files": [
"dist"
],
"standard-version": {
"skip": {
"commit": true,
"tag": true
},
"types": [
{
"type": "feat",
"section": "Features"
},
{
"type": "fix",
"section": "Bug Fixes"
},
{
"type": "perf",
"section": "Performance Improvements"
},
{
"type": "refactor",
"section": "Maintenance Improvements"
}
]
},
"repository": {
"type": "git",
"url": "git+https://github.com/jweyrich/serverless-disable-request-validators.git"
},
"bugs": {
"url": "https://github.com/jweyrich/serverless-disable-request-validators/issues"
},
"homepage": "https://github.com/jweyrich/serverless-disable-request-validators#readme",
"keywords": [
"serverless",
"api gateway",
"request validator",
"serverless plugin"
],
"scripts": {
"prepare-release": "standard-version",
"prepublish": "npm run build",
"precommit": "npm run test",
"build": "rm -rf dist && tsc",
"pretest": "npm run lint",
"lint": "eslint ./src --ext .ts",
"test": "jest"
},
"engines": {
"node": ">=12.16.0"
},
"peerDependencies": {
"serverless": ">=2.0.0",
"typescript": ">=4.0.3"
},
"devDependencies": {
"@types/node": "^14.14.25",
"jest": "24.5.0",
"standard-version": "^9.3.2",
"ts-jest": "24.0.2",
"ts-node": "^9.1.1",
"tsconfig-paths": "^3.9.0",
"typescript": "^4.2.4"
},
"jest": {
"preset": "ts-jest",
"testRegex": "(/__tests__/.*|\\.(test|spec))\\.ts$",
"moduleFileExtensions": [
"ts",
"tsx",
"js"
]
}
}