You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
38 lines
1.0 KiB
38 lines
1.0 KiB
3 years ago
|
{
|
||
|
"name": "joi",
|
||
|
"description": "Object schema validation",
|
||
|
"version": "17.6.0",
|
||
|
"repository": "git://github.com/sideway/joi",
|
||
|
"main": "lib/index.js",
|
||
|
"types": "lib/index.d.ts",
|
||
|
"browser": "dist/joi-browser.min.js",
|
||
|
"files": [
|
||
|
"lib/**/*",
|
||
|
"dist/*"
|
||
|
],
|
||
|
"keywords": [
|
||
|
"schema",
|
||
|
"validation"
|
||
|
],
|
||
|
"dependencies": {
|
||
|
"@hapi/hoek": "^9.0.0",
|
||
|
"@hapi/topo": "^5.0.0",
|
||
|
"@sideway/address": "^4.1.3",
|
||
|
"@sideway/formula": "^3.0.0",
|
||
|
"@sideway/pinpoint": "^2.0.0"
|
||
|
},
|
||
|
"devDependencies": {
|
||
|
"@hapi/bourne": "2.x.x",
|
||
|
"@hapi/code": "8.x.x",
|
||
|
"@hapi/joi-legacy-test": "npm:@hapi/joi@15.x.x",
|
||
|
"@hapi/lab": "24.x.x",
|
||
|
"typescript": "4.3.x"
|
||
|
},
|
||
|
"scripts": {
|
||
|
"prepublishOnly": "cd browser && npm install && npm run build",
|
||
|
"test": "lab -t 100 -a @hapi/code -L -Y",
|
||
|
"test-cov-html": "lab -r html -o coverage.html -a @hapi/code"
|
||
|
},
|
||
|
"license": "BSD-3-Clause"
|
||
|
}
|