-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
62 lines (62 loc) · 1.79 KB
/
Copy pathpackage.json
File metadata and controls
62 lines (62 loc) · 1.79 KB
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
{
"name": "tachijs-validated-body",
"version": "1.0.0-1",
"description": "Request body validation decorator for tachijs",
"main": "dist",
"files": [
"dist/**/*",
"!dist/specs/**/*"
],
"scripts": {
"build": "rimraf dist && tsc",
"format": "prettier --write 'src/**/*.ts'",
"lint": "npm run lint:prettier && npm run lint:tslint",
"lint:prettier": "prettier --check 'src/**/*.ts'",
"lint:tslint": "tslint -p .",
"test": "npm run lint && npm run test:coverage",
"test:watch": "jest --watchAll",
"test:coverage": "jest --coverage",
"prepublishOnly": "npm run test && npm run build"
},
"keywords": [
"expressjs",
"typescript",
"decorators",
"validator",
"validation",
"class-validator"
],
"author": "Junyoung Choi <fluke8259@gmail.com> (https://github.com/rokt33r)",
"homepage": "https://github.com/BoostIO/tachijs-validated-body#readme",
"license": "MIT",
"devDependencies": {
"@types/body-parser": "^1.17.0",
"@types/express": "^4.16.1",
"@types/jest": "^24.0.11",
"@types/node": "^11.11.6",
"@types/prettier": "^1.16.1",
"@types/supertest": "^2.0.7",
"body-parser": "^1.18.3",
"class-transformer": "^0.2.0",
"class-transformer-validator": "^0.6.0",
"class-validator": "^0.9.1",
"jest": "^24.5.0",
"prettier": "^1.16.4",
"reflect-metadata": "^0.1.13",
"rimraf": "^2.6.3",
"supertest": "^4.0.2",
"tachijs": "^1.0.0-1",
"ts-jest": "^24.0.1",
"ts-node": "^8.0.3",
"tslint": "^5.14.0",
"tslint-config-prettier": "^1.18.0",
"typescript": "^3.3.4000"
},
"peerDependencies": {
"class-transformer": "^0.2.0",
"class-transformer-validator": "^0.6.0",
"class-validator": "^0.9.1",
"tachijs": "^1.0.0-1",
"reflect-metadata": "^0.1.13"
}
}