-
Notifications
You must be signed in to change notification settings - Fork 40
/
Copy pathpackage.json
38 lines (38 loc) · 878 Bytes
/
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
{
"name": "@algoan/nestjs-class-validators",
"version": "0.0.2",
"description": "Class validators for NestJS",
"main": "dist/src/index.js",
"types": "dist/src/index.d.ts",
"scripts": {
"build": "tsc -p .",
"test:cov": "jest --coverage",
"test": "jest"
},
"repository": {
"type": "git",
"url": "git+https://github.com/algoan/nestjs-components.git",
"directory": "packages/class-validators"
},
"files": [
"dist/src"
],
"keywords": [
"nodejs",
"typescript",
"nestjs",
"class-validator"
],
"author": "Algoan",
"license": "ISC",
"bugs": {
"url": "https://github.com/algoan/nestjs-components.git"
},
"homepage": "https://github.com/algoan/nestjs-components/packages/nestjs-class-validators",
"publishConfig": {
"access": "public"
},
"dependencies": {
"class-validator": "^0.14.1"
}
}