-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
38 lines (38 loc) · 942 Bytes
/
package.json
File metadata and controls
38 lines (38 loc) · 942 Bytes
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
{
"name": "validator-checker-js",
"version": "1.2.1",
"repository": {
"type": "git",
"url": "https://github.com/Emam546/validatorjs.git"
},
"description": "",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist"
],
"scripts": {
"test": "jest",
"build": "tsc --project tsconfig.json && tsc-alias -p tsconfig.json",
"lint": "npx eslint --ext .ts src/",
"prepublish": "tsc --build --clean &&npm run build"
},
"author": "Imam",
"license": "ISC",
"devDependencies": {
"@babel/preset-typescript": "^7.18.6",
"@types/jest": "^29.1.2",
"@types/node": "^20.8.4",
"@typescript-eslint/eslint-plugin": "^5.55.0",
"eslint": "^8.36.0",
"eslint-plugin-node": "^11.1.0",
"jest": "^29.1.2",
"ts-jest": "^29.0.3",
"tsc-alias": "^1.8.8",
"tsconfig-paths-jest": "^0.0.1",
"typescript": "^5.2.2"
},
"engines": {
"node": ">=12.0.0"
}
}