UNPKG

trading-core-lib

Version:
61 lines 1.77 kB
{ "name": "trading-core-lib", "version": "0.0.7", "description": "A trading platform core library", "main": "dist/index.js", "types": "dist/index.d.ts", "files": [ "dist" ], "scripts": { "build": "tsc", "dev": "tsc --watch", "clean": "rimraf dist", "prepublishOnly": "npm run clean && npm run build", "test": "jest", "test:watch": "jest --watch", "lint": "eslint src --ext .ts", "lint:fix": "eslint src --ext .ts --fix", "format": "prettier --write \"src/**/*.ts\"", "prepare": "husky install", "version:patch": "npm version patch && git push && git push --tags", "version:minor": "npm version minor && git push && git push --tags", "version:major": "npm version major && git push && git push --tags" }, "keywords": [ "trading", "finance", "trading-platform", "core-library" ], "author": "Your Name <your.email@example.com>", "license": "MIT", "repository": { "type": "git", "url": "https://github.com/advanced-trading-platform/trading-core-libs" }, "bugs": { "url": "https://github.com/advanced-trading-platform/trading-core-libs/issues" }, "homepage": "https://github.com/advanced-trading-platform/trading-core-libs#readme", "engines": { "node": ">=16.0.0" }, "devDependencies": { "@types/jest": "^29.5.0", "@types/node": "^20.0.0", "@typescript-eslint/eslint-plugin": "^6.0.0", "@typescript-eslint/parser": "^6.0.0", "eslint": "^8.0.0", "eslint-config-prettier": "^9.0.0", "eslint-plugin-prettier": "^5.0.0", "husky": "^8.0.0", "jest": "^29.5.0", "prettier": "^3.0.0", "rimraf": "^5.0.0", "ts-jest": "^29.1.0", "typescript": "^5.0.0" }, "peerDependencies": {}, "dependencies": {} }