forked from domenic/unownbot-filtered
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
43 lines (43 loc) · 1021 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": "unownbot-filtered",
"description": "A daemon that will filter @UnownBot to specific areas, and text you about it",
"keywords": [
"pokemon",
"pokemon go",
"twitter",
"unown",
"unownbot"
],
"version": "1.0.0",
"author": "Ben Weiss <[email protected]>, Domenic Denicola <[email protected]> (https://domenic.me/)",
"license": "WTFPL",
"repository": "benweiss/unownbot-filtered",
"main": "lib/unownbot-filtered.js",
"bin": {
"unownbot-filtered": "bin/daemon.js",
"unownbot-filtered-test": "scripts/run-on-test-data.js"
},
"files": [
"lib/",
"bin/",
"scripts/",
"test/fixtures/tweets1.json",
"test/fixtures/tweets2.json"
],
"scripts": {
"lint": "eslint lib scripts test",
"test": "ava",
"start": "bin/server.js"
},
"dependencies": {
"haversine": "^1.0.0",
"koa": "^1.2.2",
"then-fs": "^2.0.0",
"twilio": "^2.10.0",
"twit": "^2.2.5"
},
"devDependencies": {
"ava": "0.16.0",
"eslint": "^3.4.0"
}
}