-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
73 lines (73 loc) · 2.51 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
{
"name": "joi-class-decorators",
"version": "1.1.2",
"description": "Integrate your Joi validation schema definitions directly into your type/DTO classes with convenient decorators.",
"scripts": {
"test:unit": "NODE_ENV=testing jest -c .jest-unit.json --watchAll",
"test:unit:debug": "NODE_ENV=testing node --inspect-brk=0.0.0.0:9229 -r tsconfig-paths/register -r ts-node/register node_modules/.bin/jest -c .jest-unit.json --runInBand",
"test:unit:once": "NODE_ENV=testing jest -c .jest-unit.json",
"test:api": "NODE_ENV=testing jest -c .jest-api.json --watchAll",
"test:api:debug": "NODE_ENV=testing node --inspect-brk=0.0.0.0:9229 -r tsconfig-paths/register -r ts-node/register node_modules/.bin/jest -c .jest-api.json --runInBand",
"test:api:once": "NODE_ENV=testing jest -c .jest-api.json",
"posttest:once": "npm run check",
"clean": "rm -rf dist/",
"compile": "npm run clean && echo Compiling... && tsc -p .",
"compile:dist": "npm run clean && echo Compiling... && tsc -p tsconfig.dist.json",
"check": "eslint -c .eslintrc.fix.json '{src,test}/**/*.{ts,js}'",
"fix": "eslint -c .eslintrc.fix.json --fix '{src,test}/**/*.{ts,js}'",
"precommit": "lint-staged"
},
"keywords": [
"joi"
],
"author": "William Hefter",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/whefter/joi-class-decorators"
},
"main": "index.js",
"types": "index.d.ts",
"typings": "index.d.ts",
"dependencies": {
"lodash": "^4.17.21"
},
"devDependencies": {
"@commitlint/cli": "^17.7.2",
"@commitlint/config-conventional": "^17.7.0",
"@elunic/ecs-prettier": "^0.2.1",
"@elunic/ecs-tsconfig": "^0.1.1",
"@elunic/eslint-config-ecs": "^0.1.10",
"@types/eslint": "^7.2.6",
"@types/jest": "^26.0.14",
"@types/lodash": "^4.14.161",
"@types/node": "^14.11.2",
"@types/prettier": "^2.1.1",
"@types/source-map-support": "^0.5.3",
"eslint": "^7.19.0",
"husky": "^4.3.0",
"jest": "^29.7.0",
"jest-junit": "^13.0.0",
"joi": "^17.2.1",
"lint-staged": "^11.0.0",
"prettier": "^2.1.2",
"reflect-metadata": "^0.1.13",
"source-map-support": "^0.5.19",
"ts-jest": "^29.2.5",
"ts-loader": "^8.0.4",
"ts-node": "^9.0.0",
"tsconfig-paths": "^3.9.0",
"type-fest": "^1.0.1",
"typescript": "~4.3.0"
},
"peerDependencies": {
"joi": "^17.2.1",
"reflect-metadata": "^0.1.13"
},
"engines": {
"node": ">= 10.13.0"
},
"publishConfig": {
"access": "public"
}
}