-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
73 lines (73 loc) · 2.35 KB
/
package.json
File metadata and controls
73 lines (73 loc) · 2.35 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
63
64
65
66
67
68
69
70
71
72
73
{
"name": "class-validator-flat-formatter",
"version": "0.0.0-dev",
"license": "MIT",
"description": "Convert array of ValidationError objects from class-validator to multiline string",
"type": "module",
"module": "./dist/index.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"default": "./dist/index.mjs"
}
},
"repository": {
"type": "git",
"url": "git+https://github.com/unlight/class-validator-flat-formatter.git"
},
"author": "",
"bugs": {
"url": "https://github.com/unlight/class-validator-flat-formatter/issues"
},
"homepage": "https://github.com/unlight/class-validator-flat-formatter#readme",
"keywords": ["class-validator"],
"scripts": {
"test": "npm run eslint && npm run tscheck && npm run test:cov",
"test:r": "vitest run",
"test:cov": "vitest run --coverage",
"test:w": "vitest watch",
"test:m": "node node_modules/@stryker-mutator/core/bin/stryker.js run",
"lint": "npm run eslint && npm run tscheck",
"eslint": "eslint \"src/**/*.{ts,tsx}\"",
"eslint:fix": "npm run eslint -- --fix",
"tscheck": "tsc --noEmit",
"tscheck:w": "npm run tscheck -- --watch",
"format:src": "prettier src --write",
"build": "sh Taskfile buildMicrobundle6"
},
"peerDependencies": {
"class-validator": "^0.14.1"
},
"devDependencies": {
"@eslint/js": "^9.39.2",
"@semantic-release/changelog": "^6.0.3",
"@semantic-release/git": "^10.0.1",
"@stryker-mutator/api": "^9.5.0",
"@stryker-mutator/core": "^9.5.0",
"@stryker-mutator/html-reporter": "^3.1.0",
"@stryker-mutator/vitest-runner": "^9.5.0",
"@types/node": "^25.1.0",
"@vitest/coverage-v8": "^4.0.18",
"class-validator": "^0.14.3",
"commitizen": "^4.3.1",
"common-tags": "^1.8.2",
"conventional-changelog-conventionalcommits": "^9.1.0",
"dts-bundle-generator": "^9.5.1",
"eslint": "^9.39.2",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-only-warn": "^1.1.0",
"eslint-plugin-prettier": "^5.5.5",
"eslint-plugin-unicorn": "^62.0.0",
"globals": "^17.2.0",
"microbundle": "^0.15.1",
"prettier": "^3.8.1",
"semantic-release": "^25.0.3",
"simplytyped": "^3.3.0",
"stryker-cli": "^1.0.2",
"ts-node": "^10.9.2",
"tslib": "^2.8.1",
"typescript": "^5.9.3",
"typescript-eslint": "^8.54.0",
"vitest": "^4.0.18"
}
}