{ "name": "megalodon", "version": "3.0.0-beta.2", "description": "Mastodon API client for node.js and browser", "main": "./lib/src/index.js", "typings": "./lib/src/index.d.ts", "scripts": { "build": "tsc -p ./", "lint": "eslint --ext .js,.ts src", "release": "yarn install && yarn run build && yarn publish", "doc": "typedoc --mode file --out docs ./src", "test": "NODE_ENV=test jest -u --maxWorkers=3" }, "repository": { "type": "git", "url": "git+https://github.com/h3poteto/megalodon.git" }, "keywords": [ "mastodon", "client", "api", "streaming", "rest", "proxy" ], "author": "h3poteto", "license": "MIT", "bugs": { "url": "https://github.com/h3poteto/megalodon/issues" }, "jest": { "moduleFileExtensions": [ "ts", "js" ], "moduleNameMapper": { "^@/(.+)": "/src/$1", "^~/(.+)": "/$1" }, "testMatch": [ "**/test/**/*.spec.ts" ], "preset": "ts-jest/presets/default", "transform": { "^.+\\.(ts|tsx)$": "ts-jest" }, "globals": { "ts-jest": { "tsConfig": "tsconfig.json" } } }, "homepage": "https://github.com/h3poteto/megalodon#readme", "dependencies": { "@types/oauth": "^0.9.0", "@types/ws": "^7.2.0", "axios": "^0.19.0", "https-proxy-agent": "^4.0.0", "moment": "^2.24.0", "oauth": "^0.9.15", "socks-proxy-agent": "h3poteto/node-socks-proxy-agent#master", "typescript": "3.8.2", "uuid": "^7.0.2", "ws": "^7.2.1" }, "devDependencies": { "@types/core-js": "^2.5.0", "@types/jest": "^25.1.1", "@types/uuid": "^7.0.0", "@typescript-eslint/eslint-plugin": "^2.19.2", "@typescript-eslint/parser": "^2.19.2", "eslint": "^6.8.0", "eslint-config-prettier": "^6.7.0", "eslint-config-standard": "^14.0.1", "eslint-plugin-import": "^2.18.0", "eslint-plugin-node": "^11.0.0", "eslint-plugin-prettier": "^3.1.0", "eslint-plugin-promise": "^4.1.1", "eslint-plugin-standard": "^4.0.0", "jest": "^25.1.0", "jest-worker": "^25.1.0", "lodash": "^4.17.14", "prettier": "^1.17.1", "ts-jest": "^25.2.0", "typedoc": "^0.16.9" } }