-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
102 lines (102 loc) · 3.52 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
95
96
97
98
99
100
101
102
{
"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",
"main": "./dist/index.cjs",
"module": "./dist/index.mjs",
"types": "./dist/index.d.ts",
"exports": {
".": {
"import": "./dist/index.mjs",
"require": "./dist/index.cjs"
}
},
"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": "node --no-warnings --loader ts-node/esm node_modules/mocha/bin/mocha.js src/**/*.spec.ts",
"test:cov": "c8 --reporter text --exclude \"**/*.spec.ts\" --exclude \"**/testing/**\" npm run test:r -- --no-timeouts",
"test:w": "npx watchexec -w src \"npm run test:r\"",
"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:w": "watchexec -w src \"npm run eslint\"",
"eslint:fix": "npm run eslint -- --fix",
"tscheck": "tsc --noEmit",
"tscheck:w": "npm run tscheck -- --watch",
"format:src": "prettier src --write",
"commit_lint": "sh Taskfile commit_lint",
"commit": "cz",
"dev": "node node_modules/webpack-dev-server/bin/webpack-dev-server",
"build": "sh Taskfile build_pkgroll",
"mocha": "node node_modules/mocha/bin/_mocha",
"test:d": "ndb -r ts-node/register node_modules/mocha/bin/_mocha --no-timeouts --watch-files src/**/*.ts --watch src/**/*.spec.ts"
},
"config": {
"commitizen": {
"path": "node_modules/cz-customizable"
}
},
"peerDependencies": {
"class-validator": "^0.14.1"
},
"devDependencies": {
"@commitlint/cli": "^19.5.0",
"@commitlint/config-conventional": "^19.5.0",
"@eslint/js": "^9.13.0",
"@semantic-release/changelog": "^6.0.3",
"@semantic-release/git": "^10.0.1",
"@stryker-mutator/api": "^8.6.0",
"@stryker-mutator/core": "^8.6.0",
"@stryker-mutator/html-reporter": "^3.1.0",
"@stryker-mutator/jest-runner": "^8.6.0",
"@stryker-mutator/mocha-runner": "^8.6.0",
"@swc/core": "^1.7.40",
"@types/mocha": "^10.0.9",
"@types/node": "^22.8.1",
"@typescript-eslint/eslint-plugin": "^8.11.0",
"@typescript-eslint/parser": "^8.11.0",
"c8": "^10.1.2",
"class-validator": "^0.14.1",
"commitizen": "^4.3.1",
"common-tags": "^1.8.2",
"conventional-changelog-conventionalcommits": "^8.0.0",
"cz-conventional-changelog": "^3.3.0",
"cz-customizable": "^7.2.1",
"eslint": "^9.13.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-only-warn": "^1.1.0",
"eslint-plugin-prettier": "^5.2.1",
"eslint-plugin-unicorn": "^56.0.0",
"expect": "^29.7.0",
"git-branch-is": "^4.0.0",
"globals": "^15.11.0",
"mocha": "^10.7.3",
"pkgroll": "^2.5.1",
"precise-commits": "^1.0.2",
"prettier": "^3.3.3",
"request": "^2.88.2",
"semantic-release": "^24.2.0",
"simplytyped": "^3.3.0",
"stryker-cli": "^1.0.2",
"ts-node": "^10.9.2",
"tslib": "^2.8.0",
"tsup": "^8.3.5",
"typescript": "^5.6.3",
"typescript-eslint": "^8.11.0",
"watchexec-bin": "^1.0.0"
}
}