-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
44 lines (44 loc) · 1002 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
44
{
"name": "sbahn-berlin-tweets",
"description": "Fetch & parse @SBahnBerlin tweets about the operating status of S-Bahn Berlin.",
"version": "1.2.1",
"main": "index.js",
"files": [
"index.js",
"parse.js",
"lib",
"example.js"
],
"keywords": [
"sbahnberlin",
"s-bahn",
"berlin",
"public transport",
"transit"
],
"author": "Jannis R <mail@jannisr.de>",
"homepage": "https://github.com/derhuerst/sbahn-berlin-tweets",
"repository": "derhuerst/sbahn-berlin-tweets",
"bugs": "https://github.com/derhuerst/sbahn-berlin-tweets/issues",
"license": "ISC",
"engines": {
"node": ">=12"
},
"dependencies": {
"lodash": "^4.17.15",
"multilingual-stemmer": "^1.0.2",
"slugg": "^1.2.1",
"twit": "^2.2.11",
"twitter-tokens": "^1.0.3",
"vbb-find-stations": "^3.0.1",
"vbb-lines": "^4.8.0"
},
"devDependencies": {
"tap-min": "^2.0.0",
"tape": "^4.10.1"
},
"scripts": {
"test": "env NODE_ENV=dev node test/index.js | tap-min",
"prepublishOnly": "npm test"
}
}