-
Notifications
You must be signed in to change notification settings - Fork 19
/
package.json
84 lines (84 loc) · 1.95 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
{
"name": "class-transformer-validator",
"version": "0.9.1",
"scripts": {
"pretest": "npm run build",
"test": "mocha build/tests/index.js",
"build": "tsc"
},
"peerDependencies": {
"class-transformer": ">=0.2.3",
"class-validator": ">=0.12.0"
},
"devDependencies": {
"@types/chai": "^4.2.12",
"@types/chai-as-promised": "^7.1.3",
"@types/mocha": "^8.0.2",
"chai": "^4.2.0",
"chai-as-promised": "^7.1.1",
"class-transformer": "^0.3.1",
"class-validator": "^0.12.2",
"husky": "^4.2.5",
"lint-staged": "^10.2.11",
"mocha": "^8.1.1",
"prettier": "^2.0.5",
"tslint": "^6.1.3",
"tslint-config-prettier": "^1.18.0",
"typescript": "^3.9.7"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"{src}/**/*.ts": [
"tslint --fix",
"prettier --write",
"git add"
]
},
"main": "index.js",
"types": "index.d.ts",
"author": {
"name": "Michał Lytek",
"url": "https://github.com/MichalLytek"
},
"description": "A simple wrapper around class-transformer and class-validator which provides nice and programmer-friendly API.",
"readmeFilename": "README.md",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/MichalLytek/class-transformer-validator.git"
},
"bugs": {
"url": "https://github.com/MichalLytek/class-transformer-validator/issues"
},
"tags": [
"class-validator",
"validator",
"validation",
"typescript-validator",
"class-transformer",
"serialization",
"deserialization",
"serializer",
"typescript",
"object-to-class",
"typescript-serializer"
],
"keywords": [
"class-validator",
"validator",
"validation",
"typescript-validator",
"class-transformer",
"serialization",
"deserialization",
"serializer",
"typescript",
"object-to-class",
"typescript-serializer"
],
"private": true
}