coingecko-api-v3
Advanced tools
Comparing version 0.0.13 to 0.0.14
@@ -1,1 +0,1 @@ | ||
module.exports = {extends: ['@commitlint/config-conventional']} | ||
module.exports = { extends: ["@commitlint/config-conventional"] }; |
{ | ||
"name": "coingecko-api-v3", | ||
"version": "0.0.13", | ||
"version": "0.0.14", | ||
"description": "The nodejs api library for accessing coingecko api v3 , develop with typescript", | ||
@@ -16,3 +16,3 @@ "main": "dist/index.js", | ||
"prepare": "husky install", | ||
"release": "standard-version --dry-run" | ||
"release": "standard-version" | ||
}, | ||
@@ -43,2 +43,3 @@ "repository": { | ||
"eslint-config-airbnb-base": "^14.2.1", | ||
"eslint-config-prettier": "^8.5.0", | ||
"eslint-plugin-import": "^2.23.4", | ||
@@ -58,3 +59,7 @@ "eslint-plugin-jest": "^24.3.6", | ||
"*.ts": "eslint --cache --fix" | ||
} | ||
}, | ||
"dependencies": { | ||
"https": "^1.0.0" | ||
}, | ||
"packageManager": "yarn@3.2.4" | ||
} |
@@ -7,5 +7,5 @@ # coingecko-api-v3 | ||
- [Official document here](https:/www.coingecko.com/api/documentations/v3) | ||
- [Official document here](https://www.coingecko.com/api/documentations/v3) | ||
- [API document generated](https:/samuraitruong.github.io/coingecko-api-v3/classes/coingeckoclient.coingeckoclient-1.html) | ||
- [API document generated](https://samuraitruong.github.io/coingecko-api-v3/classes/coingeckoclient.coingeckoclient-1.html) | ||
@@ -26,3 +26,3 @@ | ||
}); | ||
const trendingSearch = await client.trendingSearch(); | ||
const trendingSearch = await client.trending(); | ||
``` | ||
@@ -71,9 +71,11 @@ | ||
| /status_updates | client.statusUpdates() | ✅ | | ||
| /event | client.events() | ✅ | | ||
| //events/countries | client.eventCountries() | ✅ | | ||
| /events/types | client.eventsTypes() | ✅ | | ||
| /exchange_rates | client.exhangesRates() | ✅ | | ||
| /search/trending | client.searchTrending() | ✅ | | ||
| /search | client.search() | ✅ | | ||
| /search/trending | client.trending() | ✅ | | ||
| /global | client.global() | ✅ | | ||
| /status_updates | client.statusUpdates() | ✅ | | ||
| //global/decentralized_finance_defi | client.globalDefi() | ✅ | | ||
| /global/decentralized_finance_defi | client.globalDefi() | ✅ | | ||
## Development | ||
e |
{ | ||
"compilerOptions": { | ||
"declaration": true, | ||
"target": "ES2015", | ||
"module": "commonjs", | ||
"outDir": "dist", | ||
"rootDir": "src", | ||
"strict": true, | ||
"esModuleInterop": true | ||
}, | ||
"exclude": ["node_modules", "test", "__snapshots__", "lib"] | ||
"compilerOptions": { | ||
"declaration": true, | ||
"target": "ES6", | ||
"module": "commonjs", | ||
"outDir": "dist", | ||
"rootDir": "src", | ||
"strict": true, | ||
"esModuleInterop": true, | ||
"types": ["node", "jest"] | ||
}, | ||
"exclude": ["node_modules", "test", "__snapshots__", "lib"] | ||
} |
Major refactor
Supply chain riskPackage has recently undergone a major refactor. It may be unstable or indicate significant internal changes. Use caution when updating to versions that include significant changes.
Found 1 instance in 1 package
Network access
Supply chain riskThis module accesses the network.
Found 1 instance in 1 package
79
9647
1
20
9
30
+ Addedhttps@^1.0.0
+ Addedhttps@1.0.0(transitive)