-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
94 lines (94 loc) · 3.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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
{
"name": "class-validator-extended",
"version": "4.0.1",
"description": "Additional validators for class-validator.",
"keywords": [
"validator",
"validation",
"decorators",
"typescript",
"class-validator",
"plugin"
],
"homepage": "https://github.com/pigulla/class-validator-extended#readme",
"bugs": {
"url": "https://github.com/pigulla/class-validator-extended/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/pigulla/class-validator-extended.git"
},
"license": "MIT",
"author": {
"name": "Raphael Pigulla",
"email": "pigulla@four66.com"
},
"main": "dist/index.js",
"directories": {
"lib": "src",
"doc": "docs",
"test": "test"
},
"files": [
"package-lock.json",
"CHANGELOG.md",
"dist/"
],
"scripts": {
"audit": "npm audit && npm audit signatures",
"build": "rm -rf dist && tsc --project tsconfig.build.json && npm run docs:generate",
"docs:generate": "typedoc",
"format": "npm run format:prettier && npm run format:package-json",
"format:eslint": "eslint --fix --ext=ts .",
"format:package-json": "sort-package-json",
"format:prettier": "prettier --write .",
"jest": "npm run jest:unit && npm run jest:integration",
"jest:integration": "jest --config=jest.integration.config.js",
"jest:unit": "jest --config=jest.unit.config.js",
"lint": "npm run lint:tsc && npm run lint:eslint && npm run lint:prettier && npm run lint:package-json && npm run lint:lockfile",
"lint:eslint": "eslint --max-warnings 0 --ext=ts .",
"lint:lockfile": "lockfile-lint",
"lint:package-json": "sort-package-json --check",
"lint:prettier": "prettier --check .",
"lint:tsc": "tsc --noEmit --project tsconfig.json && tsc --noEmit --project test/tsconfig.json",
"prepublishOnly": "npm run setup && npm test && npm run build",
"setup": "npm ci && rm -rf coverage dist docs",
"test": "npm run lint && npm run jest && npm run audit"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"devDependencies": {
"@types/jest": "29.5.14",
"@types/node": "22.9.0",
"@types/validator": "13.12.2",
"@typescript-eslint/eslint-plugin": "8.14.0",
"@typescript-eslint/parser": "8.14.0",
"cz-conventional-changelog": "3.3.0",
"eslint": "8.57.0",
"eslint-config-prettier": "9.1.0",
"eslint-import-resolver-typescript": "3.6.3",
"eslint-plugin-import": "2.31.0",
"eslint-plugin-jest": "28.9.0",
"eslint-plugin-prettier": "5.2.1",
"eslint-plugin-unicorn": "56.0.0",
"jest": "29.7.0",
"jest-date-mock": "1.0.10",
"jest-extended": "4.0.2",
"lockfile-lint": "4.14.0",
"prettier": "3.3.3",
"sort-package-json": "2.10.1",
"ts-jest": "29.2.5",
"typedoc": "0.26.11",
"typescript": "5.6.3"
},
"peerDependencies": {
"class-validator": "^0.14.1",
"validator": "^13.9.0"
},
"optionalDependencies": {
"dayjs": "*"
}
}