-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
41 lines (41 loc) · 913 Bytes
/
package.json
File metadata and controls
41 lines (41 loc) · 913 Bytes
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
{
"name": "ic-public-transit",
"version": "0.1.0",
"author": "Derek <derekhenscheid@gmail.com>",
"description": "Tool to transform Iowa City bus data into google transit feed",
"contributors": [
{
"name": "Derek Henscheid",
"email": "derekhenscheid@gmail.com"
}
],
"scripts": {
"test": "node_modules/.bin/mocha --recursive"
},
"main": "./ic-transit",
"repository": {
"type": "git",
"url": "https://github.com/dhensche/Public-Transit.git"
},
"bugs": {
"url": "http://github.com/dhensche/Public-Transit/issues"
},
"keywords": [
"bus",
"transit",
"uiowa"
],
"license": "MIT",
"engines": {
"node": ">=0.10.12"
},
"dependencies": {
"request": "~2.26.0",
"xml2js": "~0.2.8",
"csv": "https://github.com/dhensche/node-csv/tarball/master"
},
"devDependencies": {
"mocha": "~1.12.0",
"should": "~1.2.2"
}
}