-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
60 lines (60 loc) · 1.63 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
53
54
55
56
57
58
59
60
{
"name": "nodejs-schema-rules",
"version": "v1.0.5-alpha",
"description": "The CLI tool automatically generates basic validation rules for popular libraries such as JOI, ValidatorJS and @vinejs/vine based on your database table schema!",
"bin": {
"ndVr": "dist/cli.js"
},
"main": "dist/cli.js",
"scripts": {
"format": "prettier --write 'src/**/*.{js,ts}'",
"clean": "rimraf dist/",
"copy-files": "copyfiles -u 1 src/**/*.template dist/",
"start": "node dist/cli.js",
"dev": "yarn build && node dist/cli.js",
"build": "yarn clean && tsc && yarn copy-files",
"test": "jest"
},
"jest": {
"preset": "ts-jest",
"testEnvironment": "node"
},
"keywords": [
"node",
"validatorjs",
"schema",
"nodejs-validation",
"dynamic-schema",
"dynamic-rules",
"dynamic-validation-rules",
"joi validation rules",
"validatorjs validation rules",
"vineJs validation rules",
"vinejs@vine validation rules",
"mysql schema rules",
"postgres schema rules"
],
"author": "Md Tasmidur Rahman <[email protected]> (https://tasmidur.netlify.app)",
"repository": {
"type": "git",
"url": "https://github.com/tasmidur/nodejs-validation-schema-rules.git"
},
"license": "MIT",
"dependencies": {
"commander": "^11.1.0",
"mysql2": "^3.7.0",
"pg": "^8.7.1",
"sqlite3": "^5.1.7"
},
"devDependencies": {
"@types/jest": "^29.5.11",
"@types/node": "^16.11.6",
"@types/pg": "^8.10.9",
"copyfiles": "^2.4.1",
"dotenv": "^16.3.1",
"jest": "^29.7.0",
"ts-jest": "^29.1.2",
"ts-node": "^10.4.0",
"typescript": "^4.5.5"
}
}