forked from ttezel/twit
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
39 lines (39 loc) · 812 Bytes
/
package.json
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
37
38
39
{
"name": "twit",
"description": "Twitter API client for node (REST & Streaming)",
"version": "2.2.4",
"author": "Tolga Tezel",
"keywords": [
"twitter",
"api",
"rest",
"stream",
"streaming",
"oauth"
],
"dependencies": {
"bluebird": "^3.1.5",
"mime": "^1.3.4",
"request": "2.58.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/twitter",
"repository": {
"type": "git",
"url": "http://github.com/ttezel/twit.git"
},
"scripts": {
"test": "./node_modules/.bin/mocha tests/* -t 70000 -R spec --bail --globals domain,_events,_maxListeners"
}
}