-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathpackage.json
43 lines (43 loc) · 1012 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
40
41
42
43
{
"name": "node-twitterbot",
"version": "0.2.2",
"description": "A NodeJS module for creating Twitter Bots",
"homepage": "http://www.projectspong.com/portfolio-type/nodebitlyapi/",
"author": {
"name": "Nathaniel Kirby",
"url":"http://www.projectspong.com",
"email":"[email protected]"
},
"repository": {
"type":"git",
"url":"https://github.com/nkirbygr/node-twitterbot"
},
"bugs": {
"url":"https://github.com/nkirby/node-twitterbot/issues",
"email":"[email protected]"
},
"licenses": [
{
"type":"MIT",
"url": "https://github.com/nkirby/node-twitterbot/blob/master/LICENSE"
}
],
"main": "lib/twitterbot.js",
"engines": {
"node": ">= 0.8.0"
},
"keywords": [
"twitter",
"bot"
],
"readmeFilename": "README.md",
"devDependencies": {
"grunt": "~0.4.2",
"grunt-contrib-watch": "~0.5.3",
"grunt-contrib-coffee": "~0.8.2",
"grunt-banner": "~0.2.0"
},
"dependencies": {
"twit": "~1.1.11"
}
}