-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
58 lines (58 loc) · 1.39 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
{
"name": "trm-api",
"version": "1.0.0-semantic-release",
"description": "A wrapper to simplify GET requests and JSON response parsing from the Tasa Representativa del Mercado API",
"main": "dist/trm-api.js",
"bin": {
"trm-api": "bin/trm-api"
},
"scripts": {
"lint": "eslint src --fix",
"build": "tsc",
"test": "jest --coverage"
},
"keywords": [
"tasa de cambio representativa del mercado",
"tasa representativa del mercado",
"trm",
"trmcol",
"trm colombia",
"colombia",
"exchange rate",
"colombian exchange rate",
"dollar"
],
"author": "Mauricio Robayo <rfmajo@gmail.com> (https://www.mauriciorobayo.com/)",
"license": "MIT",
"devDependencies": {
"@types/jest": "^29.5.3",
"@types/node": "^22.0.0",
"@typescript-eslint/eslint-plugin": "^5.21.0",
"@typescript-eslint/parser": "^5.21.0",
"eslint": "^8.14.0",
"eslint-config-prettier": "^9.0.0",
"jest": "^29.6.2",
"prettier": "^3.0.0",
"ts-jest": "^29.1.1",
"typescript": "^5.1.6"
},
"dependencies": {
"axios": "^1.4.0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/MauricioRobayo/trm-api.git"
},
"bugs": {
"url": "https://github.com/MauricioRobayo/trm-api/issues"
},
"homepage": "https://www.mauriciorobayo.com/trm-api/",
"files": [
"dist"
],
"release": {
"branches": [
"main"
]
}
}