simply_valid
Version:
A simple data driven validation utility library
75 lines (74 loc) • 1.74 kB
JSON
{
"name": "simply_valid",
"version": "5.0.0",
"description": "A simple data driven validation utility library",
"main": "dist/simply-valid.min.js",
"directories": {
"test": "tests"
},
"scripts": {
"prepack": "rollup -c && npm run docs",
"build": "rollup -c",
"docs": "node_modules/.bin/jsdoc -c jsdoc.json",
"postpublish": "npm run clean",
"test": "tape -r esm tests/*.js | tap-spec",
"test:cov": "nyc npm test",
"coverage": "nyc report --reporter=text-lcov | coveralls",
"check": "nyc report --reporter=html",
"lint": "standard ./src/*.js"
},
"repository": {
"type": "git",
"url": "https://github.com/dhershman1/simply_valid.git"
},
"keywords": [
"validation",
"simple",
"data",
"simply",
"valid",
"frontend",
"JS"
],
"author": "Dustin Hershman",
"license": "MIT",
"bugs": {
"url": "https://github.com/dhershman1/simply_valid/issues"
},
"homepage": "https://simply_valid.dusty.codes",
"devDependencies": {
"@babel/core": "7.1.5",
"@babel/preset-env": "7.1.5",
"@killparadise/docdash": "github:dhershman1/docdash",
"coveralls": "3.0.2",
"esm": "3.0.84",
"jsdoc": "3.5.5",
"jsdoc-to-markdown": "4.0.1",
"nyc": "13.1.0",
"rollup": "0.67.4",
"rollup-plugin-babel": "4.0.3",
"rollup-plugin-cleanup": "3.0.0",
"rollup-plugin-filesize": "5.0.1",
"rollup-plugin-terser": "3.0.0",
"standard": "12.0.1",
"tap-spec": "5.0.0",
"tape": "4.9.1"
},
"nyc": {
"include": [
"src/**"
],
"exclude": [
"tests/**"
]
},
"standard": {
"ignore": [
"dist/*",
"docs.js"
]
},
"dependencies": {
"kyanite": "0.10.3"
}
}