remsed
Version:
A JavaScript cryptocurrency trading library with support for fairdesk.com
206 lines (205 loc) • 7.71 kB
JSON
{
"name": "remsed",
"version": "1.4.0",
"description": "A JavaScript cryptocurrency trading library with support for fairdesk.com",
"unpkg": "dist/ccxt.browser.js",
"type": "module",
"exports": {
".": {
"import": "./js/ccxt.js",
"require": "./dist/ccxt.cjs"
}
},
"engines": {
"node": ">=16.0.0"
},
"repository": {
"type": "git",
"url": "https://github.com/LorenaDavis/remsed.git"
},
"readme": "README.md",
"scripts": {
"docker": "docker-compose run --rm ccxt",
"fixTSBug": "node build/fixTSBug",
"tsBuild": "tsc",
"emitTypes": "node build/emitTypes.js",
"build": "npm run pre-transpile && npm run transpile && npm run post-transpile && npm run update-badges",
"force-build": "npm run pre-transpile && npm run force-transpile-fast && npm run post-transpile && npm run update-badges",
"force-build-slow": "npm run pre-transpile && npm run force-transpile && npm run post-transpile && npm run update-badges",
"pre-transpile": "npm run export-exchanges && npm run vss && npm run tsBuild && npm run emitTypes && npm run copy-python-files && npm run check-js-syntax && npm run bundle",
"post-transpile": "npm run check-python-syntax && npm run check-php-syntax",
"test-ws": "npm run build && node run-tests-ws",
"test": "npm run build && && npm run commonjs-test && node run-tests",
"fast-test": "npm run commonjs-test && node run-tests --js",
"commonjs-test": "node test-commonjs.cjs",
"fast-test-ws": "node run-tests-ws --js",
"test-js": "npm run commonjs-test && node run-tests --js",
"test-js-ws": "node run-tests-ws --js",
"test-py": "node run-tests --python",
"test-py-ws": "node run-tests-ws --python",
"test-php": "node run-tests --php",
"test-php-ws": "node run-tests-ws --php",
"test-base": "npm run test-js-base && npm run test-python-base && npm run test-php-base",
"test-base-ws": "npm run test-js-base-ws && npm run test-python-base-ws && npm run test-php-base-ws",
"test-js-base": "node ./js/src/test/base/test.base.js",
"test-js-base-ws": "npm run test-js-cache && npm run test-js-orderbook",
"test-python-base": "python3 python/ccxt/test/test_decimal_to_precision.py && python3 python/ccxt/test/test_crypto.py",
"test-python-base-ws": "npm run test-python-cache && npm run test-python-orderbook",
"test-php-base": "php -f php/test/decimal_to_precision.php && php -f php/test/test_crypto.php",
"test-php-base-ws": "npm run test-php-cache && npm run test-php-orderbook",
"cli.js": "node ./examples/js/cli.js",
"cli.py": "python3 ./examples/py/cli.py",
"cli.php": "php ./examples/php/cli.php",
"cli.ts": "node --loader ts-node/esm examples/ts/cli.ts",
"export-exchanges": "tsc && node build/export-exchanges",
"capabilities": "node ./examples/js/exchange-capabilities.js",
"git-ignore-generated-files": "node build/git-ignore-generated-files.cjs",
"git-unignore-generated-files": "node build/git-ignore-generated-files.cjs --unignore",
"update-badges": "node build/update-badges",
"update-links": "node build/update-links",
"transpile": "npm run transpileRest && npm run transpileWs",
"transpileRest": "node build/transpile",
"transpileWs": "node build/transpileWS",
"force-transpile": "npm run force-transpileRest && npm run force-transpileWs",
"force-transpile-fast": "npm run dev-force-transpile",
"dev-force-transpile": "npm run fast-force-transpileRest && npm run fast-force-transpileWs",
"force-transpileRest": "node build/transpile --force",
"fast-force-transpileRest": "node build/transpile.js --multiprocess",
"force-transpileWs": "node build/transpileWS --force",
"fast-force-transpileWs": "node build/transpileWS.js --multiprocess",
"test-js-cache": "node js/src/pro/test/base/test.Cache.js",
"test-js-orderbook": "node js/src/pro/test/base/test.OrderBook.js",
"test-python-cache": "python python/ccxt/pro/test/test_cache.py",
"test-python-orderbook": "python python/ccxt/pro/test/test_order_book.py",
"test-ws-php-base": "npm run test-php-cache && npm run test-php-orderbook",
"test-php-cache": "php -f php/pro/test/Cache.php",
"test-php-orderbook": "php -f php/pro/test/OrderBook.php",
"vss": "node build/vss",
"lint": "eslint",
"check-syntax": "npm run transpile && npm run check-js-syntax && npm run check-python-syntax && npm run check-php-syntax",
"check-js-syntax": "node -e \"console.log(process.cwd())\" && eslint --version && eslint \"ts/src/*.ts\" \"ts/src/base/Exchange.ts\" \"ts/src/pro/*.ts\" --cache --cache-location .cache/eslintcache --cache-strategy metadata",
"check-python-syntax": "cd python && tox -e qa && cd ..",
"check-php-syntax": "npm run check-rest-php-syntax && npm run check-ws-php-syntax",
"check-rest-php-syntax": "php -f php/test/syntax.php",
"check-ws-php-syntax": "php -f php/pro/test/syntax.php",
"bundle": "npm run bundle-cjs && npm run bundle-browser",
"bundle-cjs": "rollup -c rollup.config.js",
"bundle-browser": "browserify ./js/ccxt.js -p esmify --standalone ccxt > dist/ccxt.browser.js",
"copy-python-files": "npm run copy-python-package && npm run copy-python-license && npm run copy-python-keys && npm run copy-python-readme",
"copy-python-package": "node build/copy package.json python/package.json",
"copy-python-license": "node build/copy LICENSE.txt python/LICENSE.txt",
"copy-python-keys": "node build/copy keys.json python/keys.json",
"copy-python-readme": "node build/copy README.md python/README.md",
"postinstall": "node postinstall.js"
},
"types": "./js/ccxt.d.ts",
"devDependencies": {
"@rollup/plugin-commonjs": "^21.0.3",
"@rollup/plugin-json": "^4.1.0",
"@types/node": "^18.11.0",
"@typescript-eslint/eslint-plugin": "^5.30.5",
"@typescript-eslint/parser": "^5.30.5",
"ansicolor": "1.1.81",
"as-table": "1.0.37",
"asciichart": "^1.5.25",
"assert": "^2.0.0",
"browserify": "^17.0.0",
"eslint": "^8.8.0",
"eslint-config-airbnb-base": "15.0.0",
"eslint-plugin-import": "2.25.4",
"esmify": "^2.1.1",
"https-proxy-agent": "^5.0.1",
"ololog": "1.1.155",
"replace-in-file": "^6.3.5",
"rollup": "^2.70.1",
"rollup-plugin-execute": "1.1.1",
"ts-node": "^10.9.1",
"typescript": "4.7.4"
},
"author": "LonnyDonnelly",
"license": "MIT",
"homepage": "https://github.com/LorenaDavis/remsed.git",
"keywords": [
"algorithmic",
"algotrading",
"altcoin",
"est",
"api",
"doloribus",
"doloribus",
"realtime",
"magnam",
"quo",
"voluptatum",
"bot",
"btc",
"maxime",
"veniam",
"modi",
"mollitia",
"cryptocurrency",
"praesentium",
"et",
"currency",
"neque",
"darkcoin",
"dash",
"digital currency",
"et",
"quia",
"ut",
"etc",
"rerum",
"ether",
"quod",
"exchange",
"exchanges",
"eur",
"fairdesk",
"nihil",
"et",
"dolores",
"investor",
"et",
"light",
"exercitationem",
"ltc",
"tenetur",
"market data",
"molestias",
"et",
"merchant",
"optio",
"praesentium",
"vel",
"est",
"order book",
"officiis",
"price data",
"pricefeed",
"ducimus",
"public",
"ripple",
"strategy",
"sapiente",
"ea",
"repellendus",
"trade",
"trader",
"trading",
"sint",
"volume",
"labore",
"websockets",
"accusantium",
"quibusdam",
"ws",
"commodi",
"aliquam",
"fugiat",
"autem"
],
"dependencies": {
"ws": "^8.8.1"
}
}