megalodon/package.json

89 lines
2.2 KiB
JSON
Raw Normal View History

2018-06-08 15:15:20 +02:00
{
"name": "megalodon",
2021-03-04 17:14:49 +01:00
"version": "3.5.0",
"description": "Mastodon API client for node.js and browser",
2019-08-24 14:33:30 +02:00
"main": "./lib/src/index.js",
"typings": "./lib/src/index.d.ts",
2019-06-12 17:32:19 +02:00
"scripts": {
2018-06-08 18:13:19 +02:00
"build": "tsc -p ./",
2019-05-25 15:10:10 +02:00
"lint": "eslint --ext .js,.ts src",
2019-07-12 17:36:44 +02:00
"release": "yarn install && yarn run build && yarn publish",
2021-03-02 05:31:53 +01:00
"doc": "typedoc --out docs ./src",
2019-07-06 11:01:32 +02:00
"test": "NODE_ENV=test jest -u --maxWorkers=3"
2018-06-08 15:15:20 +02:00
},
"repository": {
"type": "git",
"url": "git+https://github.com/h3poteto/megalodon.git"
},
"keywords": [
2018-06-10 09:42:35 +02:00
"mastodon",
"client",
"api",
"streaming",
2019-10-21 15:43:06 +02:00
"rest",
"proxy"
2018-06-08 15:15:20 +02:00
],
"author": "h3poteto",
"license": "MIT",
"bugs": {
"url": "https://github.com/h3poteto/megalodon/issues"
},
2019-07-06 11:01:32 +02:00
"jest": {
"moduleFileExtensions": [
"ts",
"js"
],
2019-08-23 17:17:10 +02:00
"moduleNameMapper": {
"^@/(.+)": "<rootDir>/src/$1",
"^~/(.+)": "<rootDir>/$1"
},
2019-07-06 11:01:32 +02:00
"testMatch": [
"**/test/**/*.spec.ts"
],
"preset": "ts-jest/presets/default",
"transform": {
"^.+\\.(ts|tsx)$": "ts-jest"
},
"globals": {
"ts-jest": {
"tsConfig": "tsconfig.json"
}
2020-07-06 16:27:25 +02:00
},
"testEnvironment": "node"
2019-07-06 11:01:32 +02:00
},
2018-06-08 15:15:20 +02:00
"homepage": "https://github.com/h3poteto/megalodon#readme",
"dependencies": {
2018-06-08 18:13:19 +02:00
"@types/oauth": "^0.9.0",
"@types/ws": "^7.2.0",
"axios": "^0.21.0",
"dayjs": "^1.10.4",
"https-proxy-agent": "^5.0.0",
2018-06-08 18:13:19 +02:00
"oauth": "^0.9.15",
"socks-proxy-agent": "^5.0.0",
"typescript": "4.2.3",
"uuid": "^8.0.0",
"ws": "^7.2.1"
2018-06-08 15:15:20 +02:00
},
2018-06-10 09:09:36 +02:00
"devDependencies": {
2019-05-25 15:10:10 +02:00
"@types/core-js": "^2.5.0",
"@types/jest": "^26.0.20",
"@types/uuid": "^8.0.0",
"@typescript-eslint/eslint-plugin": "^2.19.2",
"@typescript-eslint/parser": "^2.19.2",
2020-02-15 17:23:29 +01:00
"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",
2019-05-25 15:10:10 +02:00
"eslint-plugin-prettier": "^3.1.0",
"eslint-plugin-promise": "^4.1.1",
"eslint-plugin-standard": "^5.0.0",
"jest": "^26.6.3",
"jest-worker": "^26.0.0",
"lodash": "^4.17.14",
"prettier": "^2.0.2",
"ts-jest": "^26.4.4",
"typedoc": "^0.20.19"
2018-06-10 09:09:36 +02:00
}
2018-06-08 15:15:20 +02:00
}