forked from dbartholomae/middy-middleware-class-validator
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
96 lines (96 loc) · 2.85 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
84
85
86
87
88
89
90
91
92
93
94
95
96
{
"name": "middy-middleware-class-validator",
"version": "1.0.0",
"description": "A middy validation middleware using class-validator.",
"homepage": "",
"license": "MIT",
"author": {
"name": "Daniel Bartholomae",
"email": "daniel@bartholomae.name",
"url": ""
},
"files": [
"lib"
],
"main": "lib/index.js",
"keywords": [
"middy",
"middleware",
"validation",
"validator"
],
"types": "lib/index.d.ts",
"engines": {
"npm": ">= 4.0.0"
},
"private": false,
"dependencies": {
"@types/debug": ">=4.1.0",
"class-transformer": ">=0.2.3",
"class-transformer-validator": ">=0.8.0",
"class-validator": ">=0.11.0",
"debug": ">=4.1.0"
},
"peerDependencies": {
"middy": ">=0.22.0"
},
"directories": {
"docs": "docs",
"example": "examples"
},
"scripts": {
"build": "rimraf ./lib && tsc --project tsconfig.build.json",
"docs": "typedoc",
"pretest": "npm run build",
"release": "semantic-release",
"start": "cd test && serverless offline",
"test": "npm run lint && npm run test:unit && npm run test:integration && pkg-ok",
"test:integration": "concurrently --kill-others --success first \"cd test && serverless offline\" \"wait-on http://localhost:3000/status && jest -c jest.integration.config.js\"",
"test:unit": "jest",
"lint": "tslint --project tsconfig.json",
"lint:fix": "tslint --project tsconfig.json --fix",
"precommit:lint:fix": "tslint --project tsconfig.json --fix"
},
"devDependencies": {
"@commitlint/cli": "^8.1.0",
"@commitlint/config-conventional": "^8.1.0",
"@semantic-release/changelog": "^5.0.0",
"@semantic-release/commit-analyzer": "^7.0.0",
"@semantic-release/git": "^9.0.0",
"@semantic-release/npm": "^6.0.0",
"@semantic-release/release-notes-generator": "^9.0.0",
"@types/jest": "^24.0.6",
"@types/supertest": "^2.0.7",
"aws-lambda": "*",
"codecov": "^3.2.0",
"concurrently": "^5.0.0",
"cross-env": "^7.0.0",
"http-errors": "^1.7.3",
"husky": "^4.2.1",
"jest": "^25.1.0",
"jest-junit": "^10.0.0",
"lint-staged": "^10.0.2",
"middy": "^0.33.0",
"middy-middleware-json-error-handler": "^1.0.0",
"pkg-ok": "^2.3.1",
"prettier-standard": "^16.0.0",
"reflect-metadata": "^0.1.13",
"rimraf": "^3.0.0",
"semantic-release": "^17.0.0",
"serverless": "^1.37.1",
"serverless-offline": "^5.0.0",
"serverless-webpack": "^5.2.0",
"source-map-support": "^0.5.10",
"supertest": "^4.0.2",
"ts-jest": "^25.0.0",
"ts-loader": "^6.2.1",
"tslint": "^6.0.0",
"tslint-config-prettier": "^1.18.0",
"tslint-consistent-codestyle": "^1.15.0",
"typedoc": "^0.16.6",
"typescript": "^3.1.2",
"wait-on": "^4.0.0",
"webpack": "^4.37.0"
},
"repository": "git@github.com:dbartholomae/middy-middleware-class-validator.git"
}