megalodon/package.json

79 lines
1.9 KiB
JSON
Raw Normal View History

2018-06-08 15:15:20 +02:00
{
"name": "megalodon",
2019-08-15 16:39:28 +02:00
"version": "0.9.0",
2018-06-10 09:42:35 +02:00
"description": "Mastodon API client for node.js",
2018-07-15 17:44:11 +02:00
"main": "./lib/index.js",
"typings": "./lib/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",
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",
"rest"
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"
],
"testMatch": [
"**/test/**/*.spec.ts"
],
"preset": "ts-jest/presets/default",
"transform": {
"^.+\\.(ts|tsx)$": "ts-jest"
},
"globals": {
"ts-jest": {
"tsConfig": "tsconfig.json"
}
}
},
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",
2018-06-09 12:09:44 +02:00
"@types/request": "^2.47.0",
"@types/ws": "^6.0.1",
2019-06-12 17:42:59 +02:00
"axios": "^0.18.1",
2018-06-08 18:13:19 +02:00
"oauth": "^0.9.15",
2018-06-09 12:09:44 +02:00
"request": "^2.87.0",
2019-05-25 15:10:10 +02:00
"typescript": "^3.4.5",
"ws": "^7.0.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",
2019-07-06 11:01:32 +02:00
"@types/jest": "^24.0.15",
"@typescript-eslint/eslint-plugin": "^1.13.0",
"@typescript-eslint/parser": "^1.13.0",
"eslint": "^6.0.1",
2019-05-25 15:10:10 +02:00
"eslint-config-prettier": "^4.3.0",
"eslint-config-standard": "^12.0.0",
"eslint-plugin-import": "^2.18.0",
2019-05-25 15:10:10 +02:00
"eslint-plugin-node": "^9.1.0",
"eslint-plugin-prettier": "^3.1.0",
"eslint-plugin-promise": "^4.1.1",
"eslint-plugin-standard": "^4.0.0",
"lodash": "^4.17.14",
2019-07-06 11:01:32 +02:00
"prettier": "^1.17.1",
"jest": "^24.8.0",
"ts-jest": "^24.0.2",
"tslint": "^5.10.0",
"tslint-config-standard": "^7.0.0"
2018-06-10 09:09:36 +02:00
}
2018-06-08 15:15:20 +02:00
}