-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
47 lines (47 loc) · 983 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
45
46
47
{
"name": "gtfs-rb",
"description": "Generated JavaScript library based on the GTFS Realtime protocol buffer specification",
"version": "1.2.8",
"main": "exports.js",
"scripts": {
"build": "node build.js"
},
"engines": {
"node": ">= 8.15.1"
},
"dependencies": {
"protobufjs": "~6.8.6"
},
"devDependencies": {
"husky": "^1.3.1"
},
"husky": {
"hooks": {
"pre-commit": "npm run build && node bumpversion.js && git add package.json exports.js exports.d.ts"
}
},
"author": "Cyberscape",
"license": "MIT",
"files": [
"exports.js",
"exports.d.ts"
],
"repository": {
"type": "git",
"url": "https://github.com/cscape/gtfs-rb.git"
},
"homepage": "https://github.com/cscape/gtfs-rb#readme",
"bugs": {
"url": "https://github.com/cscape/gtfs-rb/issues"
},
"keywords": [
"gtfs-realtime",
"gtfs",
"gtfs-rt",
"transit",
"mobility",
"gtfs-rb",
"protobuf",
"proto"
]
}