-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
40 lines (40 loc) · 939 Bytes
/
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
{
"name": "mt940-ts",
"version": "1.0.3",
"description": "Parser for MTXXX financial messages defined by the SWIFT standard",
"main": "./lib/index.js",
"types": "./lib/index.d.ts",
"files": [
"/lib"
],
"dependencies": {},
"devDependencies": {
"@types/jest": "^27.4.1",
"@types/node": "^17.0.25",
"eslint": "^8.14.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-prettier": "^4.0.0",
"jest": "^27.5.1",
"prettier": "^2.6.2",
"ts-jest": "^27.1.4",
"typescript": "^4.6.3"
},
"scripts": {
"build": "./node_modules/.bin/tsc",
"test": "./node_modules/.bin/jest --useStderr --coverage tests"
},
"keywords": [
"mt940",
"mt942",
"mt94x",
"swfit",
"swift-parser",
"swift-messages"
],
"author": "Esteban Campostrini",
"license": "Apache-2.0",
"repository": {
"type": "git",
"url": "https://github.com/ecampostrini/mt940-ts"
}
}