validd
Version:
An experiment on data validation
38 lines • 885 B
JSON
{
"name": "validd",
"version": "0.0.15",
"description": "An experiment on data validation",
"main": "lib/index.js",
"repository": {
"type": "git",
"url": "git+https://github.com/oscarsaraza/validd.git"
},
"keywords": [
"Validation",
"Schema"
],
"author": "Oscar Saraza",
"license": "ISC",
"bugs": {
"url": "https://github.com/oscarsaraza/validd/issues"
},
"homepage": "https://github.com/oscarsaraza/validd#readme",
"devDependencies": {
"@babel/cli": "^7.23.4",
"@babel/core": "^7.23.6",
"@babel/preset-env": "^7.23.6",
"@babel/register": "^7.22.15",
"chai": "^4.3.10",
"mocha": "^11.4.0"
},
"babel": {
"presets": [
"@babel/preset-env"
]
},
"scripts": {
"pretest": "npm run compile",
"test": "mocha ./test/test.js --require @babel/register",
"compile": "babel -d lib/ src/"
}
}