forked from ttezel/twit
-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
36 lines (36 loc) · 764 Bytes
/
package.json
File metadata and controls
36 lines (36 loc) · 764 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
{
"name": "mastodon",
"description": "Mastodon API client for node",
"version": "1.2.2",
"author": "j hayley",
"keywords": [
"mastodon",
"api",
"rest"
],
"dependencies": {
"bluebird": "^3.1.5",
"mime": "^1.3.4",
"request": "^2.68.0"
},
"devDependencies": {
"async": "0.2.9",
"colors": "0.6.x",
"commander": "2.6.0",
"mocha": "2.1.0",
"rewire": "2.3.4",
"sinon": "1.15.4"
},
"engines": {
"node": ">=0.10.0"
},
"license": "MIT",
"main": "./lib/mastodon",
"repository": {
"type": "git",
"url": "http://github.com/jhayley/node-mastodon.git"
},
"scripts": {
"test": "./node_modules/.bin/mocha tests/* -t 70000 -R spec --bail --globals domain,_events,_maxListeners"
}
}