fast-check-io-ts
Version:
io-ts codec to fast-check arbitrary mapping
63 lines (62 loc) • 1.63 kB
JSON
{
"name": "fast-check-io-ts",
"version": "0.5.0",
"description": "io-ts codec to fast-check arbitrary mapping",
"files": [
"lib"
],
"main": "lib/index.js",
"typings": "lib/index.d.ts",
"repository": {
"type": "git",
"url": "https://github.com/giogonzo/fast-check-io-ts.git"
},
"bugs": {
"url": "https://github.com/giogonzo/fast-check-io-ts/issues"
},
"homepage": "https://github.com/giogonzo/fast-check-io-ts",
"scripts": {
"clean": "rimraf lib",
"build": "npm run clean && tsc",
"jest": "jest",
"test": "npm run lint && npm run prettier-check && npm run dtslint && npm run jest",
"prettier-write": "prettier --write \"./{src,test}/**/*.ts\"",
"prettier-check": "prettier --list-different \"./{src,test}/**/*.ts\"",
"preversion": "npm run test",
"prepublish": "npm run build",
"lint": "tslint -p tsconfig.json src/*.ts",
"dtslint": "dtslint dtslint"
},
"keywords": [
"fast-check",
"io-ts",
"typescript",
"arbitrary",
"generative",
"testing"
],
"author": "Giovanni Gonzaga <giovanni@buildo.io>",
"license": "MIT",
"devDependencies": {
"@types/jest": "^24.0.17",
"@types/node": "^12.7.0",
"dtslint": "github:gcanti/dtslint",
"fast-check": "^2.10.0",
"fp-ts": "^2.9.3",
"io-ts": "^2.2.13",
"jest": "^24.8.0",
"prettier": "^1.18.2",
"rimraf": "^2.6.3",
"ts-jest": "^24.0.2",
"tslint": "^5.18.0",
"typescript": "^4.1.3"
},
"peerDependencies": {
"fast-check": ">=1.16.0",
"io-ts": ">=2.0.0",
"fp-ts": ">=2.0.0"
},
"jest": {
"preset": "ts-jest"
}
}