-
-
Notifications
You must be signed in to change notification settings - Fork 53
/
package.json
55 lines (55 loc) · 1.35 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
{
"name": "iso_8583",
"version": "3.0.0-beta-6",
"description": "A javascript library for messaging in iso 8583 messaging format.",
"main": "./lib/ISO8583.js",
"types": "./lib/ISO8583.d.ts",
"scripts": {
"docs": "jsdoc -c js_docs.conf.json README.md",
"test": "jest",
"test.watch": "npx ava --verbose --watch",
"build": "tsc",
"format": "prettier --write \"src/**/*.ts\" \"src/**/*.js\"",
"lint": "tslint -p tsconfig.json"
},
"repository": {
"type": "git",
"url": "git+https://github.com/zemuldo/iso_8583.git"
},
"keywords": [
"iso",
"iso8583",
"iso_8583",
"card transaction",
"8583"
],
"author": "Danstan Otieno Onyango",
"license": "ISC",
"bugs": {
"url": "https://github.com/zemuldo/iso_8583/issues"
},
"homepage": "https://github.com/zemuldo/iso_8583/wiki",
"dependencies": {
"date-fns": "^2.9.0",
"jxon": "^2.0.0-beta.5"
},
"devDependencies": {
"@babel/preset-typescript": "^7.18.6",
"@types/jest": "^28.1.4",
"@types/jxon": "^2.0.1",
"better-docs": "^2.7.2",
"jest": "^28.1.2",
"jsdoc": "^3.6.3",
"nyc": "^15.0.1",
"prettier": "^2.7.1",
"toast-jsdoc": "^1.0.2",
"ts-jest": "^28.0.5",
"ts-node": "^10.8.2",
"tslint": "^6.1.3",
"tslint-config-prettier": "^1.18.0",
"typescript": "^4.7.4"
},
"files": [
"/lib"
]
}