megalodon/package.json
dependabot[bot] 35f406698d
Bump eslint-config-standard from 14.1.1 to 16.0.3
Bumps [eslint-config-standard](https://github.com/standard/eslint-config-standard) from 14.1.1 to 16.0.3.
- [Release notes](https://github.com/standard/eslint-config-standard/releases)
- [Changelog](https://github.com/standard/eslint-config-standard/blob/master/CHANGELOG.md)
- [Commits](https://github.com/standard/eslint-config-standard/compare/v14.1.1...v16.0.3)

---
updated-dependencies:
- dependency-name: eslint-config-standard
  dependency-type: direct:development
  update-type: version-update:semver-major
...

Signed-off-by: dependabot[bot] <support@github.com>
2022-01-01 15:55:12 +00:00

93 lines
2.3 KiB
JSON

{
"name": "megalodon",
"version": "3.6.7",
"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 --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": {
"^@/(.+)": "<rootDir>/src/$1",
"^~/(.+)": "<rootDir>/$1"
},
"testMatch": [
"**/test/**/*.spec.ts"
],
"preset": "ts-jest/presets/default",
"transform": {
"^.+\\.(ts|tsx)$": "ts-jest"
},
"globals": {
"ts-jest": {
"tsconfig": "tsconfig.json"
}
},
"testEnvironment": "node"
},
"homepage": "https://github.com/h3poteto/megalodon#readme",
"dependencies": {
"@types/oauth": "^0.9.0",
"@types/ws": "^8.2.0",
"axios": "^0.21.0",
"dayjs": "^1.10.4",
"form-data": "^4.0.0",
"https-proxy-agent": "^5.0.0",
"oauth": "^0.9.15",
"object-assign-deep": "^0.4.0",
"socks-proxy-agent": "^6.1.0",
"typescript": "4.2.4",
"uuid": "^8.0.0",
"ws": "8.4.0"
},
"devDependencies": {
"@types/core-js": "^2.5.0",
"@types/form-data": "^2.5.0",
"@types/jest": "^27.0.2",
"@types/object-assign-deep": "^0.4.0",
"@types/uuid": "^8.0.0",
"@typescript-eslint/eslint-plugin": "^4.32.0",
"@typescript-eslint/parser": "^4.32.0",
"eslint": "^7.32.0",
"eslint-config-prettier": "^8.3.0",
"eslint-config-standard": "^16.0.3",
"eslint-plugin-import": "^2.18.0",
"eslint-plugin-node": "^11.0.0",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-promise": "^4.1.1",
"eslint-plugin-standard": "^5.0.0",
"jest": "^27.2.4",
"jest-worker": "^27.2.4",
"lodash": "^4.17.14",
"prettier": "^2.0.2",
"ts-jest": "^27.0.5",
"typedoc": "^0.22.4"
}
}