megalodon/package.json
2018-10-07 00:30:36 +09:00

44 lines
1,015 B
JSON

{
"name": "megalodon",
"version": "0.4.3",
"description": "Mastodon API client for node.js",
"main": "./lib/index.js",
"typings": "./lib/index.d.ts",
"scripts": {
"build": "tsc -p ./",
"lint": "tslint './src/*.ts'",
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/h3poteto/megalodon.git"
},
"keywords": [
"mastodon",
"client",
"api",
"streaming",
"rest"
],
"author": "h3poteto",
"license": "MIT",
"bugs": {
"url": "https://github.com/h3poteto/megalodon/issues"
},
"homepage": "https://github.com/h3poteto/megalodon#readme",
"dependencies": {
"@types/oauth": "^0.9.0",
"@types/request": "^2.47.0",
"@types/websocket": "0.0.40",
"axios": "^0.18.0",
"oauth": "^0.9.15",
"request": "^2.87.0",
"typescript": "^2.9.1",
"websocket": "^1.0.28"
},
"devDependencies": {
"tslint": "^5.10.0",
"tslint-config-standard": "^7.0.0"
}
}