-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
92 lines (92 loc) · 2.35 KB
/
package.json
File metadata and controls
92 lines (92 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
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
{
"name": "validated-base",
"description": "Abstract validated base class",
"version": "2.0.3",
"author": "Eric Hacke",
"bugs": {
"url": "https://github.com/ehacke/validated-base/issues"
},
"dependencies": {
"@types/lodash-es": "^4.17.12",
"class-validator": "^0.14.3",
"clean-deep": "^3.4.0",
"err": "^2.1.13",
"http-status": "^2.1.0",
"lodash": "^4.17.21",
"lodash-es": "^4.17.21",
"luxon": "^3.7.2"
},
"devDependencies": {
"@ehacke/eslint-config": "^2.1.4",
"@ehacke/prettier-config": "^3.0.2",
"@istanbuljs/nyc-config-typescript": "^1.0.2",
"@types/chai": "^5.2.3",
"@types/lodash": "^4.17.21",
"@types/luxon": "^3.7.1",
"@types/mocha": "^10.0.10",
"@typescript-eslint/eslint-plugin": "^8.48.1",
"@typescript-eslint/parser": "^8.48.1",
"c8": "^10.1.3",
"chai": "^6.2.1",
"eslint": "^9.39.1",
"eslint-import-resolver-typescript": "^4.4.4",
"fixpack": "^4.0.0",
"husky": "^9.1.7",
"lint-staged": "^16.2.7",
"mocha": "^11.7.5",
"nyc": "^17.1.0",
"prettier": "^3.7.4",
"prettier-eslint-cli": "^8.0.1",
"sinon": "^21.0.0",
"source-map-support": "^0.5.21",
"ts-node": "^10.9.2",
"tsconfig-paths": "^4.2.0",
"tsx": "^4.21.0",
"typescript": "^5.9.3",
"validator": "^13.15.23"
},
"engines": {
"node": ">=25.0.0"
},
"files": [
"dist/**/*.{js,ts,tsbuildinfo}"
],
"homepage": "https://github.com/ehacke/validated-base#readme",
"keywords": [
"abstract",
"base",
"class",
"class-validator",
"model",
"validate",
"validation"
],
"license": "MIT",
"lint-staged": {
"package.json": [
"fixpack"
],
"*.{js,ts}": [
"eslint --fix"
]
},
"main": "dist/index.js",
"repository": {
"type": "git",
"url": "git+https://github.com/ehacke/validated-base.git"
},
"scripts": {
"beta": "npm version prerelease && npm publish --tag beta",
"build": "rm -rf ./dist && tsc -p tsconfig.build.json",
"lint": "fixpack && prettier-eslint --write && eslint --fix \"**/*.{js,ts}\"",
"major": "npm version major && npm publish",
"minor": "npm version minor && npm publish",
"patch": "npm version patch && npm publish",
"postpublish": "git push",
"prepare": "husky",
"preversion": "npm run lint && npm run build",
"unit": "c8 mocha --recursive -r source-map-support/register -r ts-node/register --use_strict --exit \"tests/**/*.unit.+(ts|js)\""
},
"type": "module",
"types": "dist/index.d.ts"
}