-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
50 lines (50 loc) · 1.29 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
40
41
42
43
44
45
46
47
48
49
50
{
"name": "joi-extender",
"version": "0.2.10",
"engines": {
"node": ">=5.12.1"
},
"description": "Extends Joi with new top-level validations and chain-ables.",
"main": "./lib/extender.js",
"directories": {
"doc": "./doc",
"lib": "./lib",
"test_helpers": "./test/helpers"
},
"scripts": {
"build": "npm run test",
"test": "node_modules/.bin/mocha",
"docs": "npm run doc:clean && npm run doc:mkdir && jsdoc -r -d $npm_package_directories_doc $npm_package_directories_lib $npm_package_directories_test_helpers",
"doc:mkdir": "mkdir -p $npm_package_directories_doc",
"doc:clean": "rm -rf $npm_package_directories_doc",
"clean": "npm run doc:clean; rm -rf ./node_modules",
"env": "env"
},
"repository": {
"type": "git",
"url": "https://github.com/raisch/joiExtender.git"
},
"keywords": [
"hapi",
"joi",
"validation",
"experimental"
],
"author": "Rob Raisch [:raisch]",
"license": "MIT",
"bugs": {
"url": "https://github.com/raisch/joiExtender/issues"
},
"homepage": "https://github.com/raisch/joiExtender",
"devDependencies": {
"chai": "^4.1.2",
"is_dma": "^1.0.1",
"jsdoc": "^3.5.5",
"mocha": "^4.0.1"
},
"dependencies": {
"hoek": "^5.0.1",
"joi": "6.10.1",
"lodash": "^4.17.4"
}
}