forked from ericandrewlewis/mta-realtime-subway-departures
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
31 lines (31 loc) · 798 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
{
"name": "mta-realtime-subway-departures",
"version": "0.0.13",
"description": "Access realtime subway departure data for the New York City subway system.",
"main": "index.js",
"scripts": {
"test": "node test.js",
"lint": "eslint index.js test.js writeStationsJson.js writeGTFSStopIdToStationIdMap.js"
},
"keywords": [
"nyc",
"subway",
"mta"
],
"author": "Eric Lewis",
"license": "MIT",
"dependencies": {
"array-unique": "^0.3.2",
"csv-parse": "^2.5.0",
"dotenv": "^6.0.0",
"mta-subway-complexes": "0.0.1",
"mta-subway-stations": "0.0.2",
"node-fetch": "^2.1.2",
"protobufjs": "^5.0.1"
},
"devDependencies": {
"eslint": "^4.19.1",
"eslint-config-airbnb-base": "^13.0.0",
"eslint-plugin-import": "^2.12.0"
}
}