-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
44 lines (44 loc) · 1.13 KB
/
package.json
File metadata and controls
44 lines (44 loc) · 1.13 KB
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
{
"name": "ts-joi-validator",
"version": "0.0.1",
"description": "",
"main": "dist/index.js",
"scripts": {
"test": "mocha",
"lint": "eslint .",
"debug": "node --inspect-brk -r ts-node/register src/index.ts",
"start": "node ."
},
"repository": {
"type": "git",
"url": "git+https://github.com/menocomp/ts-joi-validator.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/menocomp/ts-joi-validator/issues"
},
"homepage": "https://github.com/menocomp/ts-joi-validator#readme",
"devDependencies": {
"@types/chai": "^4.3.0",
"@types/hapi__joi": "^17.1.7",
"@types/mocha": "^9.0.0",
"@types/node": "^17.0.0",
"@typescript-eslint/eslint-plugin": "^5.7.0",
"@typescript-eslint/parser": "^5.7.0",
"chai": "^4.3.4",
"eslint": "^8.5.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-prettier": "^4.0.0",
"mocha": "^9.1.3",
"prettier": "^2.5.1",
"prettier-eslint": "^13.0.0",
"ts-node": "^10.4.0",
"typescript": "^4.5.4"
},
"dependencies": {
"@hapi/joi": "^17.1.1",
"acorn": "^8.6.0"
}
}