bs-ajv
Version:
BucklesScript bindings to Ajv (Another JSON Validator)
48 lines (47 loc) • 1.32 kB
JSON
{
"name": "bs-ajv",
"version": "1.0.1",
"description": "BucklesScript bindings to Ajv (Another JSON Validator)",
"scripts": {
"build": "bsb -make-world",
"clean": "bsb -clean-world",
"coverage": "nyc report --temp-directory=coverage --reporter=text-lcov | coveralls",
"install:peers": "yarn add $(jq -r '.peerDependencies|keys|join(\" \")' package.json)",
"start": "bsb -make-world -w",
"test": "yarn run clean; yarn run build; jest --coverage && yarn run coverage",
"watch:jest": "jest --coverage --watchAll"
},
"keywords": [
"BuckleScript",
"reason",
"reasonml",
"validator",
"validation",
"JSON",
"schema",
"jsonschema",
"json-schema",
"json-schema-validator",
"json-schema-validation",
"node"
],
"bugs": "https://github.com/scull7/bs-ajv/issues",
"main": "src/Ajv.bs.js",
"homepage": "https://github.com/scull7/bs-ajv",
"repository": "git@github.com:scull7/bs-ajv.git",
"author": "Nathan Sculli <scull7@gmail.com>",
"license": "MIT",
"dependencies": {
"ajv": "^6.2.1"
},
"devDependencies": {
"@glennsl/bs-jest": "^0.4.2",
"bs-platform": "^2.2.2",
"coveralls": "^3.0.0",
"nyc": "^11.4.1"
},
"peerDependencies": {
"@glennsl/bs-json": "^1.1.3",
"bs-platform": "^2.2.2"
}
}