-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
executable file
·43 lines (43 loc) · 1.02 KB
/
Copy pathpackage.json
File metadata and controls
executable file
·43 lines (43 loc) · 1.02 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
{
"name": "validatorswithgenerators",
"version": "1.0.4",
"description": "A JavaScript Package for validating data and generating data. ",
"keywords": [
"Validators",
"Generators",
"JavScript",
"NodeJS",
"node.js"
],
"main": "./lib/index.js",
"types": "./lib/index.d.ts",
"scripts": {
"start:dev": "ts-node src/index.ts",
"start": "node dist/index.js",
"postinstall": "tsc",
"prepublish": "tsc",
"test": "jest"
},
"repository": {
"type": "git",
"url": "https://github.com/Pronoy999/ValidatorsWithGenerators.git"
},
"author": "Pronoy Mukherjee",
"license": "MIT",
"dependencies": {
"@types/jest": "^26.0.23",
"@types/moment": "^2.13.0",
"@types/moment-timezone": "^0.5.30",
"express": "^4.17.1",
"jest": "^27.0.4",
"moment": "^2.27.0",
"moment-timezone": "^0.5.31",
"ts-jest": "^27.0.3",
"ts-node": "^10.0.0"
},
"devDependencies": {
"@types/express": "^4.17.12",
"@types/node": "^15.12.4",
"typescript": "^4.3.4"
}
}