-
Notifications
You must be signed in to change notification settings - Fork 18
/
package.json
81 lines (81 loc) · 2.54 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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
{
"name": "joiful",
"version": "3.0.2",
"description": "TypeScript Declarative Validation. Decorate your class properties to validate them using Joi.",
"license": "MIT",
"repository": "https://github.com/joiful-ts/joiful",
"private": true,
"author": "Laurence Dougal Myers <laurencedougalmyers@gmail.com>",
"contributors": [
"Ben <codeandcats@gmail.com> (https://github.com/codeandcats)",
"Laurence Dougal Myers <laurencedougalmyers@gmail.com>"
],
"keywords": [
"class",
"constrain",
"constraint",
"declarative",
"decorator",
"decorators",
"joi",
"model",
"schema",
"tsdv",
"tsdv-joi",
"typescript",
"validate",
"validator",
"validators",
"validation"
],
"engines": {
"node": ">=v10.22.0",
"npm": ">=3.10.10",
"yarn": ">=1.13.0"
},
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"prebuild": "yarn run clean",
"build": "tsc -p ./src && ts-node ./support/package.ts",
"check": "yarn run build && yarn run lint && yarn test",
"clean": "rimraf ./dist",
"lint": "tslint -c ./tslint.json --project ./tsconfig.json --format stylish",
"release": "git checkout master && git pull origin master && yarn run check && standard-version && ts-node ./support/updatePackageVersion.ts",
"ship-it": "git push --follow-tags origin master && cd ./dist && yarn publish && cd .. && yarn run clean",
"test": "jest",
"watch": "tsc -p tsconfig.json -w --noEmit"
},
"dependencies": {
"joi": "17.3.0"
},
"devDependencies": {
"@commitlint/cli": "11.0.0",
"@commitlint/prompt-cli": "11.0.0",
"@types/fs-extra": "9.0.7",
"@types/jest": "26.0.20",
"@types/lodash": "4.14.168",
"@types/node": "12.12.29",
"@types/reflect-metadata": "0.1.0",
"@types/rimraf": "3.0.0",
"case": "1.6.3",
"flatted": "3.1.1",
"fs-extra": "9.1.0",
"get-root-path": "2.0.2",
"husky": "4.3.8",
"jest": "26.6.3",
"jest-helpers": "3.1.1",
"lodash": "4.17.21",
"reflect-metadata": "0.1.13",
"rimraf": "3.0.2",
"standard-version": "9.1.1",
"ts-jest": "26.5.2",
"ts-node": "9.1.1",
"tslint": "6.1.3",
"typescript": "4.1.3",
"typestrict": "1.0.2"
},
"peerDependencies": {
"reflect-metadata": "0.1.13"
}
}