-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
77 lines (77 loc) · 1.98 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
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
{
"name": "format-utils",
"version": "0.0.9",
"description": "Utilities for validating various formats of Indian system codes like Mobile, PAN, AADHAAR, GST and more!",
"keywords": [
"format validators",
"mobile",
"pincode",
"PAN",
"TAN",
"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",
"scripts": {
"build": "npm run clean && tsc --noEmitOnError",
"postbuild": "cpy src/*.json dist/",
"build:watch": "npm run build -- --watch",
"clean": "rimraf dist coverage",
"commit": "git-cz",
"lint": "eslint --ext .js,.ts .",
"lint:fix": "npm run lint -- --fix",
"prepare": "husky install",
"release": "standard-version",
"release:mock": "npm run release -- --dry-run",
"test": "jest --detectOpenHandles --coverage",
"test:watch": "npm run test -- --watch"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"devDependencies": {
"@commitlint/cli": "^19.1.0",
"@commitlint/config-conventional": "^19.1.0",
"@types/jest": "^29.5.12",
"@types/node": "^22.0.0",
"@typescript-eslint/eslint-plugin": "^7.2.0",
"@typescript-eslint/parser": "^7.2.0",
"cpy-cli": "^5.0.0",
"cz-conventional-changelog": "^3.3.0",
"eslint": "^8.57.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-jest": "^28.2.0",
"eslint-plugin-prettier": "^5.1.3",
"husky": "^9.0.11",
"jest": "^29.7.0",
"lint-staged": "^15.2.2",
"prettier": "^3.2.5",
"rimraf": "^6.0.0",
"sort-package-json": "^1.53.1",
"standard-version": "^9.5.0",
"ts-jest": "^29.1.2",
"typescript": "^5.4.2"
}
}