-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
59 lines (59 loc) · 1.27 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": "tdv",
"version": "0.4.1",
"description": "Typescript (definition|decorator) validator base on Joi",
"repository": "https://github.com/vitarn/tdv",
"author": "colder",
"license": "MIT",
"main": "lib",
"module": "es",
"types": "lib",
"scripts": {
"pretest": "tsc -p tsconfig.prod.json --noEmit",
"test": "jest --coverage --maxWorkers=4",
"testing": "jest --watch",
"release": "standard-version",
"prepack": "rimraf lib && tsc -p tsconfig.prod.json -d && rimraf es && tsc -p tsconfig.prod.json -m es2015 --outDir es || echo"
},
"dependencies": {
"reflect-metadata": "^0.1.12",
"tslib": "^1.9.2"
},
"devDependencies": {
"@types/jest": "^23.0.0",
"@types/joi": "^13.0.8",
"@types/node": "^10.3.1",
"jest": "^23.1.0",
"joi": "12",
"rimraf": "^2.6.2",
"standard-version": "^4.4.0",
"ts-jest": "^22.4.6",
"typescript": "^2.9.1"
},
"peerDependencies": {
"joi": "*"
},
"files": [
"lib",
"es"
],
"jest": {
"transform": {
"^.+\\.tsx?$": "ts-jest"
},
"testRegex": "/test/.*\\.(test)\\.(t)sx?$",
"moduleFileExtensions": [
"ts",
"tsx",
"js",
"jsx",
"json",
"node"
]
},
"greenkeeper": {
"ignore": [
"joi"
]
}
}