forked from typestack/class-validator
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
59 lines (59 loc) · 1.48 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
{
"name": "sw-class-validator",
"private": true,
"version": "1.0.6",
"description": "Class-based validation with Typescript / ES6 / ES5 using decorators or validation schemas. Supports both node.js and browser",
"license": "MIT",
"readmeFilename": "README.md",
"author": {
"name": "Umed Khudoiberdiev",
"email": "[email protected]"
},
"repository": {
"type": "git",
"url": "https://github.com/swanest/class-validator.git"
},
"bugs": {
"url": "https://github.com/swanest/class-validator/issues"
},
"tags": [
"validator",
"validation",
"typescript",
"typescript-validator"
],
"dependencies": {
"validator": ">=5.0.0"
},
"devDependencies": {
"@types/chai": "^3.4.34",
"@types/chai-as-promised": "0.0.29",
"@types/gulp": "^3.8.32",
"@types/mocha": "^2.2.32",
"@types/node": "^6.0.45",
"@types/sinon": "^1.16.31",
"chai": "^3.4.1",
"chai-as-promised": "^6.0.0",
"codecov": "^1.0.1",
"del": "^2.2.2",
"gulp": "^3.9.1",
"gulp-istanbul": "^1.1.1",
"gulp-mocha": "^3.0.1",
"gulp-replace": "^0.5.4",
"gulp-shell": "^0.5.0",
"gulp-sourcemaps": "^1.6.0",
"gulp-tslint": "^6.1.2",
"gulp-typescript": "^3.0.2",
"gulpclass": "0.1.1",
"mocha": "^3.1.2",
"remap-istanbul": "^0.7.0",
"sinon": "^1.17.6",
"sinon-chai": "^2.8.0",
"tslint": "^3.15.1",
"tslint-stylish": "^2.1.0-beta",
"typescript": "^2.1.4"
},
"scripts": {
"test": "gulp tests"
}
}