forked from hapijs/joi
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
executable file
·39 lines (39 loc) · 1.07 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
{
"name": "joi",
"description": "Object schema validation",
"version": "17.9.2",
"repository": "git://github.com/hapijs/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": "^11.0.2",
"@hapi/tlds": "^1.0.1",
"@hapi/topo": "^6.0.2",
"@hapi/address": "^5.1.1",
"@hapi/pinpoint": "^2.0.1",
"@hapi/formula": "^3.0.2"
},
"devDependencies": {
"@hapi/bourne": "^3.0.0",
"@hapi/code": "^9.0.3",
"@hapi/joi-legacy-test": "npm:@hapi/[email protected]",
"@hapi/lab": "^25.1.2",
"@types/node": "^14.18.37",
"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"
}