UNPKG

nestjs-ccxt

Version:

CCXT module for Nest framework (node.js) 🚀

114 lines (113 loc) • 3.23 kB
{ "name": "nestjs-ccxt", "version": "1.0.0", "description": "CCXT module for Nest framework (node.js) 🚀", "author": "Andrea Fassina", "license": "MIT", "url": "https://github.com/fasenders/nestjs-ccxt#readme", "main": "dist/index.js", "types": "dist/index.d.ts", "keywords": [ "ccxt", "nestjs", "nestjs-ccxt" ], "scripts": { "build": "rimraf -rf dist && tsc -p tsconfig.json", "format": "prettier --write \"{lib,test}/**/*.ts\"", "lint": "eslint \"lib/**/*\" --fix", "prepublish:npm": "npm run build", "publish:npm": "npm publish --access public", "prepublish:next": "npm run build", "publish:next": "npm publish --access public --tag next", "test": "jest", "test:dev": "jest --watch --no-cache", "test:cov": "jest --coverage --no-cache", "test:e2e": "jest --config ./tests/jest-e2e.json --runInBand", "test:e2e:dev": "jest --config ./tests/jest-e2e.json --runInBand --watch", "prerelease": "npm run build", "release": "release-it", "release:major": "release-it major --ci", "release:minor": "release-it minor --ci", "release:patch": "release-it patch --ci" }, "devDependencies": { "@commitlint/cli": "17.2.0", "@commitlint/config-conventional": "17.2.0", "@golevelup/ts-jest": "0.3.4", "@nestjs/common": "8.4.6", "@nestjs/core": "8.4.7", "@nestjs/platform-express": "8.4.7", "@nestjs/testing": "8.4.7", "@release-it/conventional-changelog": "5.1.1", "@types/jest": "28.1.8", "@types/node": "18.11.9", "@typescript-eslint/eslint-plugin": "5.43.0", "@typescript-eslint/parser": "5.43.0", "ccxt": "2.1.69", "conventional-changelog-cli": "2.2.2", "eslint": "8.27.0", "eslint-config-prettier": "8.5.0", "eslint-plugin-import": "2.26.0", "husky": "8.0.2", "jest": "28.1.3", "lint-staged": "13.0.3", "prettier": "2.7.1", "reflect-metadata": "0.1.13", "release-it": "15.5.0", "rimraf": "3.0.2", "rxjs": "7.5.7", "ts-jest": "28.0.8", "typescript": "4.9.3" }, "peerDependencies": { "@nestjs/common": "^7.0.0 || ^8.0.0", "ccxt": "^1.0.0 || ^2.0.0" }, "jest": { "moduleFileExtensions": [ "js", "json", "ts" ], "rootDir": "lib", "testRegex": ".*\\.spec\\.ts$", "transform": { "^.+\\.(t|j)s$": "ts-jest" }, "collectCoverageFrom": [ "**/*.(t|j)s" ], "coverageDirectory": "../coverage", "collectCoverage": true, "testEnvironment": "node", "verbose": true, "coveragePathIgnorePatterns": [ "/node_modules/", "/interfaces/" ], "moduleNameMapper": { "@/(.*)": [ "<rootDir>/$1" ] } }, "lint-staged": { "*.ts": [ "prettier --write" ] }, "husky": { "hooks": { "commit-msg": "commitlint -c .commitlintrc.json -E HUSKY_GIT_PARAMS", "pre-commit": "lint-staged" } }, "repository": { "type": "git", "url": "https://github.com/fasenderos/nestjs-ccxt" }, "bugs": { "url": "https://github.com/fasenderos/nestjs-ccxt/issues" } }