-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
69 lines (69 loc) · 1.52 KB
/
package.json
File metadata and controls
69 lines (69 loc) · 1.52 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
{
"name": "hsn-code-package",
"version": "2.3.1",
"description": "Fast, zero-runtime-dependency HSN code lookup with full GST toolkit. Search 12,000+ codes, validate HSN/GSTIN, browse SAC codes, compute CGST/SGST/IGST, and export data.",
"main": "index.js",
"types": "index.d.ts",
"bin": {
"hsn": "bin/cli.js"
},
"files": [
"index.js",
"gst.js",
"gstin.js",
"sac.js",
"export.js",
"bin/",
"data/",
"index.d.ts"
],
"scripts": {
"test": "jest --coverage",
"typecheck": "tsc --noEmit --strict --moduleResolution node --target ES2020 --lib ES2020 tests/types.test.ts",
"build:data": "node scripts/build-data.js",
"update:rates": "node scripts/update-gst-rates.js"
},
"jest": {
"testMatch": [
"**/tests/**/*.test.js"
]
},
"repository": {
"type": "git",
"url": "git+https://github.com/karthi-21/HSN-Code-Package.git"
},
"keywords": [
"hsn",
"hsn-codes",
"gst",
"gstin",
"sac-codes",
"india",
"tax",
"cbic",
"invoice",
"igst",
"cgst",
"sgst",
"harmonized-system",
"customs"
],
"author": {
"name": "Karthikeyan",
"url": "https://karthi-21.com/"
},
"license": "ISC",
"bugs": {
"url": "https://github.com/karthi-21/HSN-Code-Package/issues"
},
"homepage": "https://hsn-gst-demo.karthi-21.com/",
"engines": {
"node": ">=14"
},
"devDependencies": {
"convert-excel-to-json": "^1.7.0",
"jest": "^30.4.2",
"typescript": "^5.9.3",
"xlsx": "^0.18.5"
}
}