New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

coingecko-api-v3

Package Overview
Dependencies
Maintainers
1
Versions
29
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

coingecko-api-v3 - npm Package Compare versions

Comparing version 0.0.13 to 0.0.14

.editorconfig

2

commitlint.config.js

@@ -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"]
}
SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc