-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
78 lines (78 loc) · 1.9 KB
/
package.json
File metadata and controls
78 lines (78 loc) · 1.9 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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
{
"name": "format-utils",
"version": "0.0.13",
"description": "Utilities for validating various formats of Indian system codes like Mobile, PAN, AADHAAR, GST and more!",
"keywords": [
"format validators",
"mobile",
"pincode",
"PAN",
"TAN",
"CIN",
"UAN",
"IFSC",
"ESIC",
"IMEI",
"AADHAAR",
"AADHAR",
"AADHAAR VID",
"GST",
"GSTIN",
"vehicle registration",
"vpa",
"upi",
"upi id",
"india",
"validators",
"validation"
],
"repository": {
"type": "git",
"url": "https://github.com/mastermunj/format-utils.git"
},
"license": "MIT",
"author": "Munjal Dhamecha",
"main": "dist/validator.js",
"files": [
"dist/*"
],
"scripts": {
"build": "npm run clean && tsc --noEmitOnError",
"build:watch": "npm run build -- --watch",
"clean": "rimraf dist coverage",
"commit": "git-cz",
"lint": "eslint --max-warnings=0 .",
"lint:fix": "npm run lint -- --fix",
"prepare": "husky",
"release": "standard-version",
"release:mock": "npm run release -- --dry-run",
"test": "vitest",
"test:watch": "npm run test -- --watch"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"devDependencies": {
"@commitlint/cli": "^20.0.0",
"@commitlint/config-conventional": "^20.0.0",
"@types/node": "^25.0.0",
"@typescript-eslint/eslint-plugin": "^8.38.0",
"@typescript-eslint/parser": "^8.38.0",
"@vitest/coverage-v8": "^3.2.4",
"cpy-cli": "^7.0.0",
"cz-conventional-changelog": "^3.3.0",
"eslint": "^9.32.0",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-prettier": "^5.5.3",
"husky": "^9.1.7",
"lint-staged": "^16.1.2",
"prettier": "^3.6.2",
"rimraf": "^6.0.1",
"sort-package-json": "^3.4.0",
"standard-version": "^9.5.0",
"typescript": "^6.0.2",
"vitest": "^3.2.4"
}
}