-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
37 lines (37 loc) · 825 Bytes
/
Copy pathpackage.json
File metadata and controls
37 lines (37 loc) · 825 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
{
"name": "x12-835-parser",
"version": "1.0.0",
"description": "Zero-dependency X12 835 healthcare remittance parser with CARC denial rollups. Runs in the browser so PHI never leaves the client.",
"type": "module",
"main": "src/index.ts",
"files": [
"src",
"examples",
"README.md",
"LICENSE"
],
"scripts": {
"test": "node --experimental-strip-types tests/parse835.test.ts",
"demo": "node --experimental-strip-types examples/demo.ts"
},
"keywords": [
"x12",
"835",
"edi",
"healthcare",
"remittance",
"carc",
"denial-management",
"hipaa",
"phi"
],
"author": "Christian Hayes",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/prismlfx/x12-835-parser.git"
},
"engines": {
"node": ">=22"
}
}