-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
41 lines (41 loc) · 1.22 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
{
"name": "validatorjs-decorator",
"version": "0.0.1",
"description": "Validate functions, constructor and properties with validatorJS and Typescript decorators",
"homepage": "https://github.com/albertcito/validatorjs-decorator#readme",
"main": "dist/index.js",
"types": "dist",
"scripts": {
"build": "./node_modules/.bin/tsc -p .",
"test": "jest src --config jestconfig.json",
"lint": "eslint --ext=jsx,ts,tsx 'src/**/*.{ts,tsx}'",
"lint-fix": "eslint --ext=jsx,ts,tsx 'src/**/*.{ts,tsx}' --fix"
},
"repository": {
"type": "git",
"url": "git+https://github.com/albertcito/validatorjs-decorator.git"
},
"keywords": [
"validatorjs",
"typescript",
"decorator"
],
"author": "Albert Tjornehoj @albertcito",
"license": "ISC",
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^4.3.0",
"@typescript-eslint/parser": "^4.3.0",
"@types/validatorjs": "^3.15.0",
"@types/jest": "^26.0.14",
"eslint": "^7.10.0",
"eslint-config-airbnb-base": "^14.2.0",
"eslint-plugin-import": "^2.22.1",
"jest": "^26.4.2",
"ts-jest": "^26.4.1",
"typescript": "^4.0.3"
},
"dependencies": {
"reflect-metadata": "^0.1.13",
"validatorjs": "^3.20.0"
}
}