coinbase-pro
Advanced tools
Comparing version 0.0.0-draft.1 to 0.9.0
@@ -1,1 +0,7 @@ | ||
module.exports = exports = require('gdax') | ||
module.exports = exports = { | ||
PublicClient: require('./lib/clients/public.js'), | ||
WebsocketClient: require('./lib/clients/websocket.js'), | ||
AuthenticatedClient: require('./lib/clients/authenticated.js'), | ||
Orderbook: require('./lib/orderbook.js'), | ||
OrderbookSync: require('./lib/orderbook_sync.js'), | ||
}; |
{ | ||
"name": "coinbase-pro", | ||
"version": "0.0.0-draft.1", | ||
"version": "0.9.0", | ||
"author": "Coinbase", | ||
"bugs": "https://github.com/coinbase/coinbase-pro-node/issues", | ||
"contributors": [ | ||
{ | ||
"email": "peterldowns@gmail.com", | ||
"name": "Peter Downs", | ||
"url": "http://peterdowns.com" | ||
}, | ||
{ | ||
"email": "maksimus16@gmail.com", | ||
"name": "Maksim Stepanenko", | ||
"url": "http://maksim.ms" | ||
}, | ||
{ | ||
"email": "miha@rebernik.info", | ||
"name": "Miha Rebernik", | ||
"url": "http://miha.rebernik.info" | ||
} | ||
], | ||
"dependencies": { | ||
"gdax": "*" | ||
"@types/request": "2.47.0", | ||
"bignumber.js": "^6.0.0", | ||
"bintrees": "^1.0.1", | ||
"request": "^2.81.0", | ||
"ws": "^4.0.0" | ||
}, | ||
"description": "alias of the official library for Coinbase's GDAX API.", | ||
"main": "index.js", | ||
"standard": { | ||
"global": [ | ||
"test" | ||
] | ||
}, | ||
"description": "Client for the coinbase-pro API", | ||
"devDependencies": { | ||
"m.test": "0.0.57", | ||
"standard": "^11.0.1" | ||
"eslint": "^5.16.0", | ||
"husky": "^2.1.0", | ||
"lint-staged": "^8.1.5", | ||
"mocha": "^5.0.0", | ||
"nock": "^9.0.13", | ||
"prettier": "~1.13.5" | ||
}, | ||
"scripts": { | ||
"test": "m.test" | ||
"directories": { | ||
"lib": "./lib" | ||
}, | ||
"repository": { | ||
"type": "git", | ||
"url": "git+https://github.com/ivoputzer/coinbase-pro.git" | ||
"engines": { | ||
"node": ">=6.0.0" | ||
}, | ||
"homepage": "https://github.com/coinbase/coinbase-pro-node", | ||
"keywords": [ | ||
"gdax", | ||
"API", | ||
"bitcoin", | ||
"coinbase", | ||
"api", | ||
"client" | ||
"exchange", | ||
"real-time", | ||
"trading", | ||
"websockets", | ||
"coinbase-pro", | ||
"ethereum" | ||
], | ||
"author": "Ivo", | ||
"license": "MIT", | ||
"bugs": { | ||
"url": "https://github.com/ivoputzer/coinbase-pro/issues" | ||
"main": "index.js", | ||
"types": "index.d.ts", | ||
"repository": { | ||
"type": "git", | ||
"url": "git://github.com/coinbase/coinbase-pro-node.git" | ||
}, | ||
"homepage": "https://github.com/ivoputzer/coinbase-pro#readme", | ||
"directories": { | ||
"test": "test" | ||
"scripts": { | ||
"lint": "eslint --ext .js ./", | ||
"prettier": "prettier -l *.js **/*.js", | ||
"prettier-write": "npm run prettier -- --write", | ||
"test": "mocha --full-trace --ui tdd --bail --reporter spec tests/*.js" | ||
}, | ||
"lint-staged": { | ||
"*.{js}": [ | ||
"eslint --fix", | ||
"prettier --write", | ||
"git add" | ||
], | ||
"*.{json,md}": [ | ||
"prettier --write", | ||
"git add" | ||
] | ||
}, | ||
"husky": { | ||
"hooks": { | ||
"pre-commit": "lint-staged" | ||
} | ||
} | ||
} |
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
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
New author
Supply chain riskA new npm collaborator published a version of the package for the first time. New collaborators are usually benign additions to a project, but do indicate a change to the security surface area of a package.
Found 1 instance in 1 package
Mixed license
License(Experimental) Package contains multiple licenses.
Found 1 instance in 1 package
No bug tracker
MaintenancePackage does not have a linked bug tracker in package.json.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
Deprecated
MaintenanceThe maintainer of the package marked it as deprecated. This could indicate that a single version should not be used, or that the package is no longer maintained and any new vulnerabilities will not be fixed.
Found 1 instance in 1 package
Wildcard dependency
QualityPackage has a dependency with a floating version range. This can cause issues if the dependency publishes a new major version.
Found 1 instance in 1 package
Trivial Package
Supply chain riskPackages less than 10 lines of code are easily copied into your own project and may not warrant the additional supply chain risk of an external dependency.
Found 1 instance in 1 package
690360
27
25021
0
1
627
5
6
1
2
2
+ Added@types/request@2.47.0
+ Addedbignumber.js@^6.0.0
+ Addedbintrees@^1.0.1
+ Addedrequest@^2.81.0
+ Addedws@^4.0.0
- Removedgdax@*
- Removedgdax@0.9.0(transitive)