This repository has been archived by the owner on Aug 17, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
106 lines (106 loc) · 2.31 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
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
{
"name": "@trmapi/cambio",
"version": "0.0.0-development",
"publishConfig": {
"access": "public"
},
"description": "Consulta la Tasa Representativa del Mercado en el servicio web de la Superintendencia Financiera de Colombia",
"main": "src/index.js",
"engines": {
"node": ">=8.10.0"
},
"scripts": {
"lint": "eslint src",
"test": "jest --coverage"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/trmapi/cambio/issues"
},
"homepage": "https://www.trmapi.com",
"author": "Mauricio Robayo <rfmajo@gmail.com> (https://www.archemiro.com)",
"keywords": [
"Colombia",
"Tasa Representativa del Mercado",
"Tasa de Cambio Representativa del Mercado",
"tcrm",
"trm",
"Superintendencia Financiera de Colombia"
],
"devDependencies": {
"@commitlint/cli": "^8.1.0",
"@commitlint/config-conventional": "^8.1.0",
"codecov": "^3.1.0",
"eslint": "^6.1.0",
"eslint-config-airbnb-base": "^14.0.0",
"eslint-config-prettier": "^6.0.0",
"eslint-plugin-import": "^2.18.2",
"husky": "^4.2.1",
"jest": "^24.8.0",
"lint-staged": "^10.0.6",
"prettier": "^1.15.3",
"semantic-release": "^17.0.0"
},
"dependencies": {},
"files": [
"/src/index.js",
"/src/request.js"
],
"size-limit": [
{
"path": "src/index.js",
"limit": "9 KB"
}
],
"directories": {
"example": "examples"
},
"repository": {
"type": "git",
"url": "git+https://github.com/trmapi/cambio.git"
},
"prettier": {
"singleQuote": true,
"trailingComma": "all",
"semi": false
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
},
"jest": {
"testEnvironment": "node",
"coverageThreshold": {
"global": {
"branches": 100,
"functions": 100,
"lines": 100,
"statements": 100
}
},
"collectCoverageFrom": [
"src/**/*.js"
],
"coveragePathIgnorePatterns": [
"src/request.js"
]
},
"husky": {
"hooks": {
"pre-commit": "lint-staged",
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
},
"lint-staged": {
"src/**/*.js": [
"eslint --fix",
"git add",
"jest --bail --findRelatedTests"
],
"**/*.{js,css,json,md}": [
"prettier --write",
"git add"
]
}
}