-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
2 changed files
with
12 additions
and
12 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,25 +1,31 @@ | ||
{ | ||
"name": "@coinsamba/js-exchanges-connector", | ||
"description": "Collection of JavaScript implementations of cryptocurrency exchange APIs", | ||
"version": "2.0.8", | ||
"version": "2.0.9", | ||
"repository": "[email protected]:coinsambacom/js-exchanges-connector.git", | ||
"author": "Gustavo <[email protected]>", | ||
"license": "MIT", | ||
"private": false, | ||
"type": "module", | ||
"source": "src/index.ts", | ||
"exports": { | ||
"types": "./typings/index.d.ts", | ||
"require": "./dist/index.js", | ||
"types": "./dist/index.d.ts", | ||
"require": "./dist/index.cjs", | ||
"default": "./dist/index.modern.js" | ||
}, | ||
"types": "./typings/index.d.ts", | ||
"types": "dist/index.d.ts", | ||
"main": "./dist/index.js", | ||
"module": "./dist/index.module.js", | ||
"unpkg": "./dist/index.umd.js", | ||
"keywords": [ | ||
"exchanges", | ||
"cryptocurrency", | ||
"coinsamba", | ||
"nodejs" | ||
], | ||
"files": [ | ||
"dist/**.js*", | ||
"typings/**/*.ts" | ||
"dist/**/*.ts" | ||
], | ||
"scripts": { | ||
"prepare": "yarn run --silent build", | ||
|
@@ -32,12 +38,6 @@ | |
"refresh": "yarn run clean && yarn ci", | ||
"clean": "git clean -fX .eslintcache dist/" | ||
}, | ||
"keywords": [ | ||
"exchanges", | ||
"cryptocurrency", | ||
"coinsamba", | ||
"nodejs" | ||
], | ||
"engines": { | ||
"node": "^12.20.0 || >=14.13.1" | ||
}, | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters