-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
90 lines (90 loc) · 2.48 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
{
"name": "validated-base",
"description": "Abstract validated base class",
"version": "1.2.1",
"author": "Eric Hacke",
"bugs": {
"url": "https://github.com/ehacke/validated-base/issues"
},
"dependencies": {
"class-validator": "^0.13.1",
"clean-deep": "^3.4.0",
"err": "^2.1.12",
"http-status": "^1.5.0",
"lodash": "^4.17.21",
"luxon": "^1.26.0"
},
"devDependencies": {
"@commitlint/cli": "^12.1.1",
"@commitlint/config-conventional": "^12.1.1",
"@gapizza/commitlint-config": "^1.0.1",
"@gapizza/eslint-config-ts": "^1.2.1",
"@gapizza/prettier-config": "^1.0.1",
"@istanbuljs/nyc-config-typescript": "^1.0.1",
"@types/chai": "^4.2.18",
"@types/lodash": "^4.14.168",
"@types/luxon": "^1.26.5",
"@types/mocha": "^8.2.2",
"chai": "^4.3.4",
"commitizen": "^4.2.4",
"commitlint": "^12.1.1",
"cz-conventional-changelog": "^3.3.0",
"eslint": "^7.26.0",
"fixpack": "^4.0.0",
"husky": "^6.0.0",
"lint-staged": "^11.0.0",
"mocha": "^8.4.0",
"nyc": "^15.1.0",
"prettier": "^2.2.1",
"prettier-eslint-cli": "^5.0.1",
"sinon": "^10.0.0",
"ts-node": "^9.1.1",
"typescript": "^4.2.4",
"validator": "^13.6.0"
},
"engines": {
"node": ">=10.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}": [
"prettier-eslint --write",
"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",
"commit": "git-cz",
"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": "fixpack && husky install",
"prepublishOnly": "npm run build",
"test": "nyc mocha --recursive -r source-map-support/register -r ts-node/register --use_strict --exit \"tests/**/*.+(unit|it).+(ts|js)\" && npm run lint"
},
"types": "dist/index.d.ts"
}