{ "name": "io-ts", "version": "2.0.5", "description": "TypeScript compatible runtime type system for IO validation", "files": [ "lib", "es6" ], "main": "lib/index.js", "module": "es6/index.js", "typings": "lib/index.d.ts", "sideEffects": false, "scripts": { "lint": "tslint -p tsconfig.tslint.json src/**/*.ts test/**/*.ts", "jest": "jest", "prettier": "prettier --no-semi --single-quote --print-width 120 --parser typescript --list-different \"{src,test}/**/*.ts\"", "fix-prettier": "prettier --no-semi --single-quote --print-width 120 --parser typescript --write \"{src,test,examples,exercises}/**/*.ts\"", "test": "npm run prettier && npm run lint && npm run dtslint && npm run declaration && npm run jest && npm run docs", "clean": "rimraf lib/* es6/*", "build": "npm run clean && tsc && tsc -p tsconfig.es6.json && npm run import-path-rewrite", "prepublish": "npm run build", "perf": "ts-node perf/index", "dtslint": "dtslint dtslint", "declaration": "tsc -p declaration/tsconfig.json", "mocha": "TS_NODE_CACHE=false mocha -r ts-node/register test/*.ts", "doctoc": "doctoc README.md", "docs": "docs-ts", "import-path-rewrite": "import-path-rewrite" }, "repository": { "type": "git", "url": "https://github.com/gcanti/io-ts.git" }, "author": "Giulio Canti ", "license": "MIT", "bugs": { "url": "https://github.com/gcanti/io-ts/issues" }, "homepage": "https://github.com/gcanti/io-ts", "dependencies": {}, "peerDependencies": { "fp-ts": "^2.0.0" }, "devDependencies": { "@types/benchmark": "1.0.31", "@types/jest": "^23.3.8", "@types/node": "7.0.4", "benchmark": "2.1.4", "docs-ts": "^0.3.0", "doctoc": "^1.4.0", "dtslint": "github:gcanti/dtslint", "fp-ts": "^2.0.0", "import-path-rewrite": "github:gcanti/import-path-rewrite", "jest": "^24.8.0", "mocha": "^5.2.0", "prettier": "^1.19.1", "rimraf": "2.6.2", "ts-jest": "^24.0.2", "ts-node": "^7.0.1", "tslint": "^5.11.0", "tslint-config-standard": "^8.0.1", "typescript": "^3.7.4" }, "tags": [ "typescript", "validation", "inference", "types", "runtime" ], "keywords": [ "typescript", "validation", "inference", "types", "runtime" ] }