forked from norkator/banking-ws
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
66 lines (66 loc) · 2.16 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
{
"name": "banking-ws",
"version": "0.22.0",
"description": "Library to construct, validate and make corporate banking web service request with SOAP",
"repository": "https://github.com/norkator/banking-ws.git",
"bugs": {
"url": "https://github.com/norkator/banking-ws/issues"
},
"author": "Martin Kankaanranta <[email protected]>",
"homepage": "https://github.com/norkator/banking-ws#readme",
"license": "LGPL-3.0",
"private": false,
"main": "dist/lib/index.js",
"module": "dist/esm/index.js",
"types": "dist/lib/index.d.ts",
"scripts": {
"dev": "ts-node ./src/test.ts",
"build": "yarn build:cjs && yarn build:esm",
"build:cjs": "tsc -p tsconfig.cjs.json",
"build:esm": "tsc -p tsconfig.esm.json",
"build:umd": "webpack",
"test": "TS_NODE_PROJECT='./tsconfig.base.json' mocha --reporter spec --require ts-node/register src/**/*.test.ts --forbid-only --bail",
"test:windows": "SET TS_NODE_PROJECT=./tsconfig.base.json&& mocha --reporter spec --require ts-node/register src/**/*.test.ts --forbid-only --bail",
"check:errors": "tsc --noEmit -p tsconfig.base.json",
"lint": "eslint './src/**/*.{js,ts,tsx}'",
"lint:windows": "eslint --ext .js,.ts,.tsx src/"
},
"files": [
"dist/lib",
"dist/esm"
],
"devDependencies": {
"@types/chai": "4.3.12",
"@types/mocha": "10.0.6",
"@types/moment": "2.13.0",
"@types/node": "20.11.20",
"@types/uuid": "9.0.8",
"@types/xml-c14n": "0.0.3",
"@types/xml2js": "0.4.14",
"@types/xmldom": "0.1.34",
"@typescript-eslint/eslint-plugin": "7.0.2",
"@typescript-eslint/parser": "7.0.2",
"chai": "4.4.1",
"eslint": "8.57.0",
"eslint-plugin-deprecation": "2.0.0",
"mocha": "10.3.0",
"prettier": "3.2.5",
"ts-loader": "9.5.1",
"ts-node": "10.9.2",
"typescript": "5.3.3",
"webpack": "5.90.3",
"webpack-cli": "5.1.4"
},
"dependencies": {
"@xmldom/xmldom": "0.8.10",
"axios": "1.6.7",
"ibantools": "4.5.0",
"moment": "2.30.1",
"openssl-nodejs": "1.0.5",
"uuid": "9.0.1",
"xml-c14n": "0.0.6",
"xml2js": "0.6.2",
"xmlbuilder": "15.1.1",
"xpath": "0.0.34"
}
}