-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
42 lines (42 loc) · 1.05 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
{
"name": "@wayline/express",
"private": true,
"version": "1.5.23",
"description": "Generates GTFS-RT files for Miami-Dade Transit",
"main": "server.js",
"scripts": {
"update": "npm i @wayline/config @wayline/transformer gtfs-rb@latest"
},
"keywords": [
"wayline",
"transit"
],
"author": "Cyberscape <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/cscape/wayline-miami/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/cscape/wayline-miami.git"
},
"homepage": "https://github.com/cscape/wayline-miami#readme",
"dependencies": {
"@wayline/config": "github:cscape/wayline-config",
"@wayline/transformer": "github:cscape/wayline-transformer",
"axios": "^0.18.1",
"cron": "^1.7.1",
"express": "^4.17.1",
"gtfs-rb": "^1.2.8",
"node-persist": "^3.0.5",
"protobufjs": "~6.8.8"
},
"devDependencies": {
"husky": "^1.3.1"
},
"husky": {
"hooks": {
"pre-commit": "node bumpversion.js && git add package.json"
}
}
}