fluent-ts-validator
Version:
A fluent validator written in TypeScript
55 lines (54 loc) • 1.48 kB
JSON
{
"name": "fluent-ts-validator",
"version": "3.0.3",
"description": "A fluent validator written in TypeScript",
"author": "Markus Bohl <markus.bohl@gmail.com>",
"repository": {
"type": "git",
"url": "https://github.com/markusbohl/fluent-ts-validator.git"
},
"main": "dist/index.js",
"typings": "dist/index.d.ts",
"license": "MIT",
"devDependencies": {
"@types/jasmine": "2.5.54",
"codecov": "2.3.0",
"copyfiles": "1.2.0",
"istanbul": "1.1.0-alpha.1",
"jasmine": "2.8.0",
"jasmine-console-reporter": "2.0.1",
"jasmine-core": "2.8.0",
"jasmine-ts": "0.2.1",
"nodemon": "1.12.0",
"npm-check": "5.4.5",
"rimraf": "2.6.1",
"snyk": "1.40.2",
"ts-node": "3.3.0",
"tslint": "5.7.0",
"typescript": "2.5.2"
},
"files": [
"dist",
"README.md",
"CHANGELOG.md"
],
"scripts": {
"build": "rimraf dist && tsc",
"lint": "tslint --config ./tslint.json --project ./tsconfig.json",
"tdd": "nodemon --watch src --ext ts --exec 'npm test'",
"test": "jasmine-ts 'src/**/*.spec.ts'",
"test:coverage": "ts-node node_modules/.bin/istanbul cover -e .ts -x '*.spec.ts' node_modules/.bin/jasmine",
"test:snyk": "snyk test",
"test:snyk:dev": "snyk test --dev",
"codecov": "node_modules/.bin/codecov",
"npm-check": "npm-check --skip-unused"
},
"dependencies": {
"validator": "13.7.0"
},
"keywords": [
"typescript",
"validator",
"fluent API"
]
}