-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
95 lines (95 loc) · 2.02 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
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
{
"name": "birdwatch",
"version": "4.2.3",
"description": "Monitor, filter, cache and serve specific twitter feeds.",
"main": "dist/index.js",
"files": [
"dist"
],
"engines": {
"node": ">=8.0.0"
},
"scripts": {
"test": "npm run prettier && npm run build && ava --verbose && nyc ava",
"ava": "npm run build && ava --verbose",
"build": "babel lib --out-dir=dist --optional=runtime",
"coveralls": "nyc report --reporter=text-lcov | coveralls",
"prettier": "prettier --single-quote **/*.js --write"
},
"repository": {
"type": "git",
"url": "https://github.com/radiovisual/birdwatch.git"
},
"keywords": [
"birdwatch",
"twitter",
"tweets",
"tweet",
"caching",
"cache",
"monitor",
"json",
"filter",
"tags",
"tag",
"hashtag",
"retweet",
"remove",
"html",
"save",
"service",
"server"
],
"author": {
"name": "Michael Wuergler",
"email": "[email protected]",
"url": "http://numetriclabs.com"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/radiovisual/birdwatch/issues"
},
"homepage": "https://github.com/radiovisual/birdwatch",
"dependencies": {
"babel-runtime": "^5.8.29",
"chalk": "~1.1.0",
"clear": "0.0.1",
"dotenv": "^2.0.0",
"express": "^4.13.4",
"get-port": "^2.1.0",
"hash-regex": "^1.0.0",
"is-regexp": "^2.0.0",
"mkdirp": "^0.5.1",
"node-oauth-error": "0.0.2",
"oauth": "^0.9.14",
"object-assign": "~3.0.0",
"pify": "^2.3.0",
"tweet-patch": "^2.0.5",
"underscore": "~1.8.3"
},
"devDependencies": {
"ava": "^0.25.0",
"babel": "^5.8.23",
"coveralls": "^2.11.6",
"got": "^8.3.1",
"nyc": "^5.6.0",
"os-tmpdir": "^1.0.1",
"prettier": "^1.14.0",
"rimraf": "^2.5.1",
"selective-whitespace": "^1.0.0",
"xmark": "0.0.4",
"xo": "*"
},
"xo": {
"esnext": true,
"ignores": [
"dist/**"
]
},
"ava": {
"files": [
"test/test.js",
"!test/app.js"
]
}
}