comp-val
Version:
composable validation
45 lines (44 loc) • 1.07 kB
JSON
{
"name": "comp-val",
"version": "1.0.2",
"private": false,
"description": "composable validation",
"main": "index.js",
"author": "Eric Wooley <ericwooley@gmail.com>",
"license": "MIT",
"repository": {
"type": "git",
"url": "git@github.com:thewooleyway/thewooleymeta.git"
},
"scripts": {
"docs": "typedoc --theme markdown index.ts --readme ./DocsIndex.md --out docs",
"test": "jest",
"prepublish": "npm run test && tsc"
},
"devDependencies": {
"@types/jest": "^20.0.8",
"jest": "^20.0.4",
"ts-jest": "^20.0.10",
"tslint": "^5.7.0",
"tslint-config-standard": "^6.0.1",
"typedoc": "^0.8.0",
"typedoc-plugin-markdown": "^1.0.8"
},
"jest": {
"moduleFileExtensions": [
"ts",
"tsx",
"js"
],
"transform": {
"\\.(ts|tsx)$": "<rootDir>/node_modules/ts-jest/preprocessor.js"
},
"testRegex": ".*test\\.(ts|tsx)$"
},
"dependencies": {
"@types/lodash": "^4.14.74",
"@types/node": "^8.0.25",
"lodash": "^4.17.4",
"typescript": "^2.4.2"
}
}