-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
61 lines (61 loc) · 1.32 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
{
"private": false,
"name": "node-mnb",
"version": "1.1.1",
"description": "Node package that retrieves information from the Hungarian National Bank's (MNB) SOAP API.",
"main": "dist/src/index.js",
"types": "dist/src/index.d.ts",
"directories": {
"lib": "dist",
"test": "test"
},
"scripts": {
"start": "npx ts-node ./src/index.ts",
"dev": "nodemon ./src/index.ts",
"build": "npx tsc",
"test": "jest",
"west": "jest --watch",
"prepare": "npm run build"
},
"engines": {
"node": ">=12.x"
},
"repository": {
"type": "git",
"url": "git+https://github.com/0xAndrewBlack/node-mnb.git"
},
"keywords": [
"mnb",
"soap",
"api",
"node",
"currency",
"currencies",
"exchangerates",
"rates"
],
"author": "0xAndrewBlack",
"license": "ISC",
"bugs": {
"url": "https://github.com/0xAndrewBlack/node-mnb/issues"
},
"homepage": "https://github.com/0xAndrewBlack/node-mnb#readme",
"dependencies": {
"soap": "^0.45.0",
"xml2js": "^0.4.23"
},
"devDependencies": {
"@babel/core": "^7.18.6",
"@babel/preset-env": "^7.18.6",
"@babel/preset-typescript": "^7.18.6",
"@types/jest": "^28.1.4",
"@types/soap": "^0.21.0",
"@types/xml2js": "^0.4.11",
"babel-jest": "^28.1.2",
"jest": "^28.1.2",
"nodemon": "^2.0.19",
"ts-node": "^10.8.2",
"ts-node-dev": "^2.0.0",
"typescript": "^4.7.4"
}
}