-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
67 lines (67 loc) · 1.34 KB
/
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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
{
"name": "twitter-bot",
"version": "0.1.0",
"description": "A framework for twitter bots.",
"main": "./lib/twitter-bot.js",
"directories": {
"test": "test"
},
"scripts": {
"test": "gulp test"
},
"repository": {
"type": "git",
"url": "git+https://github.com/fraziermork/twitter-bot.git"
},
"keywords": [
"twitter",
"bot",
"rest",
"streaming",
"twitter-bot"
],
"author": {
"name": "Frazier Mork",
"email": "[email protected]",
"url": "fraziermork.com"
},
"contributors": [
{
"name": "Frazier Mork",
"email": "[email protected]",
"url": "fraziermork.com"
},
{
"name": "Lex Myers",
"email": "[email protected]"
},
{
"name": "Lisa Wenke",
"email": "[email protected]"
}
],
"license": "MIT",
"bugs": {
"url": "https://github.com/fraziermork/twitter-bot/issues"
},
"homepage": "https://github.com/fraziermork/twitter-bot#readme",
"devDependencies": {
"chai": "^3.5.0",
"gulp": "^3.9.1",
"gulp-eslint": "^2.0.0",
"gulp-mocha": "^2.2.0",
"mocha": "^2.4.5"
},
"dependencies": {
"debug": "^2.3.3",
"lodash": "^4.7.0",
"twit": "^2.2.3"
},
"maintainers": [
{
"name": "Frazier Mork",
"email": "[email protected]",
"url": "fraziermork.com"
}
]
}