-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
61 lines (61 loc) · 1.78 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
{
"name": "corporate-taxid-checker-js",
"version": "1.0.0",
"description": "Validate Global Tax IDs: A robust and comprehensive library for validating tax identification numbers (TINs) worldwide. It supports validation against standard regex patterns and offers extended verification through checksum algorithms for countries with such requirements. Ideal for applications dealing with international data, finance, or requiring precise tax ID validation",
"main": "dist/corporate-taxid-checker.js",
"keywords": [
"tax",
"tax-id",
"validation",
"validator",
"finance",
"accounting",
"regex",
"checksum",
"international",
"global",
"business",
"identification",
"compliance",
"TIN",
"VAT",
"EIN",
"GST",
"fiscal",
"audit",
"compliance"
],
"scripts": {
"test": "jest",
"build:lib": "webpack --config webpack.node.cjs",
"build:dist": "webpack --config webpack.browser.cjs",
"build": "npm run build:lib && npm run build:dist"
},
"repository": {
"type": "git",
"url": "git+https://github.com/aashishvanand/corporate-taxid-checker-js.git"
},
"author": "Aashish Vivekanand",
"license": "CC BY 4.0",
"bugs": {
"url": "https://github.com/aashishvanand/corporate-taxid-checker-js/issues"
},
"homepage": "https://github.com/aashishvanand/corporate-taxid-checker-js#readme",
"dependencies": {
"axios": "^1.5.1",
"jsonpack": "^1.1.5",
"cheerio": "^1.0.0-rc.12"
},
"devDependencies": {
"@babel/core": "^7.23.2",
"@babel/preset-env": "^7.23.2",
"babel-jest": "^29.7.0",
"babel-loader": "^9.1.3",
"fs-extra": "^11.1.1",
"jest": "^29.7.0",
"webpack": "^5.89.0",
"webpack-cli": "^5.1.4",
"raw-loader": "^4.0.2",
"path-browserify": "^1.0.1"
}
}