-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
110 lines (110 loc) · 2.63 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
103
104
105
106
107
108
109
110
{
"name": "ajv-class-validator",
"version": "0.0.0",
"description": "Lightweight class validator based on [AJV](https://github.com/ajv-validator/ajv) the fastest JSON Schema validator.",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"scripts": {
"test": "jest --config jestconfig.json --coverage --maxWorkers=10 --detectOpenHandles --forceExit",
"lint": "eslint . --ext .ts",
"format": "prettier --write \"src/**/*.ts\"",
"lint:fix": "eslint . --ext .ts --fix",
"build": "tsc --noEmit false",
"commit": "git-cz"
},
"publishConfig": {
"access": "public",
"branches": [
"master"
]
},
"pre-commit": [
"lint"
],
"husky": {
"hooks": {
"pre-commit": "lint-staged",
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
},
"lint-staged": {
"{src,__mocks__,bin}/**/*.ts": [
"prettier --write"
]
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
},
"config": {
"commitizen": {
"path": "@commitlint/prompt"
}
},
"release": {
"prepare": [
{
"path": "@semantic-release/changelog"
},
[
"@semantic-release/git",
{
"assets": [
"CHANGELOG.md"
],
"message": "chore(release): ${nextRelease.version} [skip ci]\n\n${nextRelease.notes}"
}
]
]
},
"repository": {
"type": "git",
"url": "git+https://github.com/Qolzam/ajv-class-validator.git"
},
"author": "Amir Movahedi <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/Qolzam/ajv-class-validator/issues"
},
"homepage": "https://github.com/Qolzam/ajv-class-validator#readme",
"keywords": [
"typescript",
"ajv",
"class-validator",
"class",
"validator",
"decorator",
"metadata"
],
"dependencies": {},
"peerDependencies": {
"ajv": "^7.0.0-beta.7",
"reflect-metadata": "^0.1.13"
},
"devDependencies": {
"ajv-formats": "^0.6.1",
"@commitlint/cli": "^11.0.0",
"@commitlint/config-conventional": "^11.0.0",
"@commitlint/prompt": "^11.0.0",
"@types/node": "^14.14.6",
"ajv": "^7.0.0-beta.7",
"del": "^6.0.0",
"jest": "26.6.3",
"reflect-metadata": "^0.1.13",
"ts-jest": "^26.4.4",
"@typescript-eslint/eslint-plugin": "^4.5.0",
"@typescript-eslint/parser": "^4.5.0",
"commitizen": "^4.2.2",
"eslint": "^7.11.0",
"eslint-config-prettier": "^6.13.0",
"eslint-plugin-prettier": "^3.1.4",
"husky": "^4.3.0",
"lint-staged": "^10.5.1",
"prettier": "^2.1.2",
"typescript": "^4.0.2"
},
"files": [
"dist"
]
}