-
Notifications
You must be signed in to change notification settings - Fork 52
Expand file tree
/
Copy pathpackage.json
More file actions
40 lines (40 loc) · 778 Bytes
/
package.json
File metadata and controls
40 lines (40 loc) · 778 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
37
38
39
40
{
"name": "twitterlib",
"main": "twitterlib.js",
"version": "1.1.4",
"description": "Library for doing all things Twitter API related, with added sauce for filtering, paging and paging",
"homepage": "https://github.com/remy/twitterlib/",
"keywords": [
"twitter"
],
"maintainers": [
{
"name": "Remy Sharp"
}
],
"repositories": [
{
"type": "git",
"url": "https://github.com/remy/twitterlib/"
}
],
"licenses": [
{
"type": "MIT",
"url": "http://rem.mit-license.org"
}
],
"dependencies": {
"commander": "1.x.x",
"node-terminal": "0.1.x"
},
"bin": {
"tweets": "./bin/tweets"
},
"scripts": {
"test": "tap ./test/test.js"
},
"devDependencies": {
"tap": "~0.4.3"
}
}