{ "name": "mango-simple-client", "version": "0.0.1", "description": "Client Library for interacting with Mango Markets' with a more CEX style API", "repository": "feierabend654/mango-simple-client-ts", "author": { "name": "feierabend654", "email": "feierabend654@gmail.com" }, "main": "lib/index.js", "source": "src/index.js", "types": "lib/index.d.ts", "license": "MIT", "engines": { "node": ">=10" }, "scripts": { "build": "tsc --project ./tsconfig.json", "clean": "rm -rf lib", "prepare": "run-s clean build", "test": "mocha -r ts-node/register tests/simpleclient.test.ts --timeout 0", "test:build": "run-s build", "test:lint": "eslint src", "test:unit": "jest", "test:watch": "jest --watch" }, "devDependencies": { "@tsconfig/node10": "^1.0.0", "@types/bn.js": "^4.11.6", "@types/chai": "^4.2.17", "@types/jest": "^26.0.9", "@types/mocha": "^8.2.2", "@typescript-eslint/eslint-plugin": "^4.6.0", "@typescript-eslint/parser": "^4.6.0", "babel-eslint": "^10.0.3", "chai": "^4.3.4", "cross-env": "^7.0.2", "eslint": "^7.6.0", "eslint-config-prettier": "^6.11.0", "jest": "^26.6.3", "mocha": "^8.3.2", "node-fetch": "^2.6.1", "npm-run-all": "^4.1.5", "prettier": "^2.0.5", "ts-jest": "^26.2.0", "ts-node": "^9.1.1", "typescript": "^4.1.3" }, "files": [ "lib" ], "dependencies": { "@blockworks-foundation/mango-client": "^2.0.0", "@project-serum/common": "^0.0.1-beta.3" } }