-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
57 lines (57 loc) · 1.33 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
{
"name": "ts-class-validator",
"version": "0.2.2",
"description": "Declarative typescript validator with nested logic operator support.",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"test": "jest --coverage",
"build": "tsc -d src/index.ts --outDir dist",
"lint": "tslint \"src/**/*.ts\"",
"lint-fix": "tslint --fix \"src/**/*.ts\"",
"prepublish": "npm run lint && npm run build"
},
"files": [
"dist",
"src"
],
"husky": {
"hooks": {
"pre-commit": "npm run lint"
}
},
"repository": {
"type": "git",
"url": "git+https://github.com/sijiecai/ts-class-validator.git"
},
"keywords": [
"validator",
"validation",
"logical operator",
"declarative",
"typescript",
"reflection",
"decorator",
"metadata"
],
"author": "SijieCai",
"email": "[email protected]",
"license": "MIT",
"bugs": {
"url": "https://github.com/sijiecai/ts-class-validator/issues"
},
"homepage": "https://github.com/sijiecai/ts-class-validator#readme",
"dependencies": {
"reflect-metadata": "^0.1.12",
"validator": "^10.8.0",
"@types/validator": "^9.4.2"
},
"devDependencies": {
"@types/jest": "^23.3.9",
"husky": "^1.2.0",
"jest": "^23.6.0",
"ts-jest": "^23.10.4",
"tslint": "^5.11.0",
"typescript": "^3.1.6"
}
}