ts-valid8
Version:
A next-generation TypeScript validation library with advanced features
75 lines (74 loc) • 1.97 kB
JSON
{
"name": "ts-valid8",
"version": "1.0.0",
"description": "A next-generation TypeScript validation library with advanced features",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"module": "dist/index.esm.js",
"scripts": {
"build": "rollup -c",
"test": "jest",
"test:watch": "jest --watch",
"test:coverage": "jest --coverage",
"prepublishOnly": "npm run build",
"lint": "eslint . --ext .ts",
"format": "prettier --write \"src/**/*.ts\"",
"example": "ts-node examples/user-registration.ts",
"docs": "typedoc src/index.ts",
"prepare": "husky install",
"precommit": "lint-staged"
},
"repository": {
"type": "git",
"url": "git+https://github.com/sol-21/validation"
},
"keywords": [
"validation",
"typescript",
"form-validation",
"schema",
"cross-field-validation",
"conditional-validation"
],
"author": "Your Name",
"license": "MIT",
"bugs": {
"url": "https://github.com/sol-21/validation/issues"
},
"homepage": "https://github.com/sol-21/validation#readme",
"devDependencies": {
"@types/jest": "^29.5.0",
"@types/node": "^18.15.11",
"@typescript-eslint/eslint-plugin": "^5.57.1",
"@typescript-eslint/parser": "^5.57.1",
"codecov": "^3.8.3",
"eslint": "^8.38.0",
"eslint-config-prettier": "^10.1.2",
"husky": "^8.0.3",
"jest": "^29.5.0",
"jest-watch-typeahead": "^2.2.2",
"lint-staged": "^13.2.1",
"prettier": "^2.8.7",
"rollup": "^2.79.1",
"rollup-plugin-terser": "^7.0.2",
"rollup-plugin-typescript2": "^0.34.1",
"ts-jest": "^29.1.0",
"ts-node": "^10.9.1",
"typedoc": "^0.24.1",
"typescript": "^5.0.4"
},
"files": [
"dist",
"LICENSE",
"README.md"
],
"engines": {
"node": ">=14.0.0"
},
"lint-staged": {
"*.ts": [
"eslint --fix",
"prettier --write"
]
}
}