megalodon/package.json

38 lines
901 B
JSON
Raw Normal View History

2018-06-08 15:15:20 +02:00
{
"name": "megalodon",
"version": "0.1.0",
"description": "Mastodon client for node.js",
2018-06-08 18:13:19 +02:00
"main": "./lib/mastodon.js",
"typings": "./lib/mastodon.d.ts",
2018-06-08 15:15:20 +02:00
"scripts": {
2018-06-08 18:13:19 +02:00
"build": "tsc -p ./",
2018-06-10 09:09:36 +02:00
"lint": "tslint './src/*.ts'",
2018-06-08 15:15:20 +02:00
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/h3poteto/megalodon.git"
},
"keywords": [
"mastodon"
],
"author": "h3poteto",
"license": "MIT",
"bugs": {
"url": "https://github.com/h3poteto/megalodon/issues"
},
"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",
2018-06-08 18:13:19 +02:00
"axios": "^0.18.0",
"oauth": "^0.9.15",
2018-06-09 12:09:44 +02:00
"request": "^2.87.0",
2018-06-08 15:15:20 +02:00
"typescript": "^2.9.1"
},
2018-06-10 09:09:36 +02:00
"devDependencies": {
"tslint": "^5.10.0",
"tslint-config-standard": "^7.0.0"
}
2018-06-08 15:15:20 +02:00
}