-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
60 lines (60 loc) · 1.58 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
{
"name": "validata",
"version": "5.0.8",
"description": "Type safe data validation and sanitization",
"keywords": [
"typescript",
"type-safe",
"typesafe",
"typed",
"validate",
"validator",
"validation",
"clean",
"cleanse",
"sanitise",
"sanitize",
"data validator",
"data clean",
"data cleanse",
"object validator",
"request validator"
],
"repository": {
"type": "git",
"url": "git@github.com:gregbacchus/validata.git"
},
"license": "MIT",
"author": "",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"scripts": {
"build": "./node_modules/.bin/tsc --outDir dist --sourceMap",
"lint": "./node_modules/.bin/eslint src/ --ext .ts,.tsx",
"prepublishOnly": "npm run build && npm version patch",
"postpublish": "git push",
"test": "./node_modules/.bin/jest --verbose --runInBand",
"test-coverage": "./node_modules/.bin/jest --verbose --coverage --runInBand"
},
"dependencies": {
"@types/luxon": "^3.2.0",
"luxon": "^3.2.1",
"validator": "^13.7.0"
},
"devDependencies": {
"@types/jest": "^29.2.5",
"@types/validator": "^13.7.10",
"@typescript-eslint/eslint-plugin": "^5.48.2",
"@typescript-eslint/eslint-plugin-tslint": "^5.48.2",
"@typescript-eslint/parser": "^5.48.2",
"change-case": "^4.1.2",
"eslint": "^8.32.0",
"eslint-plugin-filenames": "^1.3.2",
"eslint-plugin-prefer-arrow": "^1.2.3",
"jest": "^29.3.1",
"json-date-parser": "^1.0.1",
"ts-jest": "^29.0.5",
"tslint": "^6.1.3",
"typescript": "^4.9.4"
}
}