This repository has been archived by the owner on Feb 7, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
52 lines (52 loc) · 1.53 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
51
52
{
"name": "@absolunet/joi",
"version": "0.3.0",
"description": "joi extensions + extra goodies",
"definition": "",
"homepage": "https://documentation.absolunet.com/node-joi",
"author": {
"name": "Absolunet",
"url": "https://absolunet.com"
},
"keywords": [
"joi"
],
"license": "MIT",
"repository": {
"url": "git://github.com/absolunet/node-joi.git",
"type": "git"
},
"bugs": {
"url": "https://github.com/absolunet/node-joi/issues"
},
"engines": {
"node": ">= 12.0.0"
},
"main": "dist/node",
"scripts": {
"manager:install": "node manager --task=install",
"manager:outdated": "node manager --task=outdated",
"manager:build": "node manager --task=build",
"manager:watch": "node manager --task=watch",
"manager:documentation": "node manager --task=documentation",
"manager:prepare": "node manager --task=prepare",
"manager:rebuild": "node manager --task=rebuild",
"manager:publish": "node manager --task=publish",
"manager:publish:unsafe": "node manager --task=publish:unsafe",
"test": "node test --scope=all",
"test:standards": "node test --scope=standards",
"test:unit": "node test --scope=unit",
"test:feature": "node test --scope=feature",
"test:integration": "node test --scope=integration",
"test:endtoend": "node test --scope=endtoend"
},
"devDependencies": {
"@absolunet/manager": "2.0.0",
"@absolunet/tester": "3.1.1",
"lodash": "4.17.15"
},
"dependencies": {
"@hapi/joi": "^17.0.2",
"is-var-name": "^2.0.0"
}
}