-
-
Notifications
You must be signed in to change notification settings - Fork 19
/
Copy pathpackage.json
77 lines (77 loc) · 1.97 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": "iso20022.js",
"version": "0.0.26",
"description": "Simple framework to create and ingest ISO20022 XML files.",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"module": "dist/index.mjs",
"scripts": {
"test": "npx jest --coverage",
"shell": "npx tsx --experimental-repl-await",
"build": "rollup -c",
"type-check": "tsc --noEmit",
"create-patch-version": "npm run build && npm version patch && git push origin --tags && npm publish",
"example:swift": "npx tsx examples/swift-credit-transfer.ts",
"example:sepa": "npx tsx examples/sepa-credit-transfer.ts",
"coveralls": "npm run test && coveralls report"
},
"exports": {
".": {
"require": "./dist/index.js",
"import": "./dist/index.mjs",
"types": "./dist/index.d.ts"
}
},
"files": [
"dist"
],
"type": "module",
"keywords": [
"iso20022",
"finance",
"fintech",
"payments"
],
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{js,jsx,ts,tsx,json,css,scss,md}": [
"prettier --write"
]
},
"homepage": "https://iso20022js.com",
"author": "svapnil",
"license": "MIT",
"devDependencies": {
"@babel/preset-typescript": "^7.24.7",
"@faker-js/faker": "^8.4.1",
"@jest/globals": "^29.7.0",
"@rollup/plugin-commonjs": "^26.0.1",
"@rollup/plugin-node-resolve": "^15.2.3",
"@rollup/plugin-typescript": "^11.1.6",
"@types/dinero.js": "^1.9.4",
"@types/jest": "^29.5.12",
"@types/node": "^20.14.12",
"@types/uuid": "^10.0.0",
"husky": "^9.1.4",
"jest": "^29.7.0",
"libxmljs": "^1.0.11",
"lint-staged": "^15.2.8",
"prettier": "^3.3.3",
"rollup": "^4.19.2",
"rollup-plugin-dts": "^6.1.1",
"ts-jest": "^29.2.3",
"ts-node": "^10.9.2",
"tslib": "^2.6.3",
"typescript": "^5.5.4"
},
"dependencies": {
"dinero.js": "^1.9.1",
"fast-xml-parser": "^4.4.1",
"uuid": "^10.0.0",
"xmlbuilder2": "^3.1.1"
}
}