-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
111 lines (111 loc) · 3.01 KB
/
package.json
File metadata and controls
111 lines (111 loc) · 3.01 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
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
{
"name": "validar-decorators",
"version": "1.0.9",
"description": "Decorators for validar package",
"main": "lib",
"types": "lib",
"files": [
"lib",
"src"
],
"scripts": {
"prepublishOnly": "npm run clean && tsc && npm run test && npm run docs",
"ci:test": "jest --runInBand --reporters=default --reporters=jest-junit --coverage --coverageDirectory=coverage",
"test": "jest --verbose --runInBand --coverage --no-cache",
"test:watch": "jest --watch --runInBand",
"format": "prettier --write \"{./src,./tests}/**/*\"",
"fix:src": "eslint --fix \"./src/**/*.{js,jsx,ts,tsx}\"",
"fix:tests": "eslint --fix \"./tests/**/*.{js,jsx,ts,tsx}\"",
"fix": "npm-run-all -p fix:*",
"clean": "del lib && del .buildcache",
"docs": "del docs && typedoc --theme markdown --readme none --excludePrivate --excludeNotExported --out docs/api ./src",
"build": "npm run clean && tsc",
"build:watch": "npm run build && tsc --watch"
},
"engines": {
"node:": ">=v8.16.1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ivandotv/validar-decorators.git"
},
"bugs": {
"url": "https://github.com/ivandotv/validar-decorators/issues"
},
"homepage": "https://github.com/ivandotv/validar-decorators#readme",
"jest": {
"coverageThreshold": {
"global": {
"branches": 80,
"functions": 80,
"lines": 80,
"statements": 80
}
},
"watchPlugins": [
"jest-watch-typeahead/filename",
"jest-watch-typeahead/testname"
],
"preset": "ts-jest"
},
"jest-junit": {
"outputDirectory": "./reports/junit",
"outputName": "js-test-results.xml"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"src/**/*.{js,jsx,ts,tsx,json,css,scss,md}": [
"eslint --fix",
"prettier --write"
],
"tests/**/*.{js,jsx,ts,tsx}": [
"eslint --fix",
"prettier --write"
]
},
"keywords": [
"validation",
"validar",
"decorator",
"typescript",
"decorators"
],
"author": "Ivan Vlatkovic",
"license": "MIT",
"dependencies": {
"reflect-metadata": "^0.2.0"
},
"peerDependencies": {
"validar": "^1.0.7"
},
"devDependencies": {
"validar": "^1.0.7",
"@types/jest": "^27.0.0",
"@types/node": "^14.0.4",
"@typescript-eslint/eslint-plugin": "^4.22.0",
"del-cli": "^3.0.1",
"eslint": "^7.0.0",
"eslint-config-prettier": "^8.0.0",
"eslint-config-standard-with-typescript": "^20.0.0",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^3.1.3",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-standard": "^4.0.1",
"husky": "^4.2.5",
"jest": "^26.0.1",
"jest-junit": "^12.0.0",
"jest-watch-typeahead": "^0.6.0",
"lint-staged": "^10.2.4",
"move-file-cli": "^2.0.0",
"prettier": "^2.0.5",
"ts-jest": "^26.0.0",
"typedoc": "^0.28.0",
"typedoc-plugin-markdown": "^3.0.0",
"typescript": "^4.0.0"
}
}