-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
41 lines (41 loc) · 1.06 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": "chained-validation-rules",
"version": "0.0.12",
"description": "Facilitates the validation of strings by chaining series of rules",
"author": "ApamateSoft",
"license": "MIT",
"homepage": "https://github.com/ApamateSoft/chained-validation-rules",
"keywords": [
"validator",
"chained validation",
"validatin rules",
"form validation",
"string validation"
],
"files": [
"lib",
"README.md",
"package.json"
],
"main": "lib/index.js",
"types": "lib/index.d.ts",
"scripts": {
"test": "jest --config jestconfig.json",
"build": "tsc",
"format": "prettier --write src/**/*.ts test/**/*.ts",
"lint": "tslint -p tsconfig.json",
"eslint": "eslint . --ext .ts"
},
"devDependencies": {
"@types/jest": "^29.5.0",
"@typescript-eslint/eslint-plugin": "^5.59.0",
"@typescript-eslint/parser": "^5.59.0",
"eslint": "^8.39.0",
"jest": "^29.5.0",
"prettier": "^2.8.7",
"ts-jest": "^29.1.0",
"tslint": "^6.1.3",
"tslint-config-prettier": "^1.18.0",
"typescript": "^5.0.4"
}
}