-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
56 lines (56 loc) · 1.32 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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
{
"name": "hasta",
"version": "1.0.0",
"main": "index.js",
"type": "module",
"bin": {
"hasta-server": "hasta-server.js"
},
"scripts": {
"dtslint": "dtslint @types",
"lint": "eslint **/*.js",
"lint-fix": "eslint **/*.js --fix",
"test": "eslint **/*.js && NODE_ENV=test mocha ./test/mocha/**/*.js --timeout 2000"
},
"author": "Daniel Sörlöv <[email protected]>",
"description": "Manage GTFS data in SQLite and act as frontend for Home Assistant Integrations",
"keywords": [
"transit",
"gtfs",
"transportation",
"geojson",
"sqlite"
],
"bugs": {
"url": "https://github.com/DSorlov/hasta/issues"
},
"repository": {
"type": "git",
"url": "git://github.com/DSorlov/hasta.git"
},
"license": "MIT",
"dependencies": {
"axios": "^0.25.0",
"better-sqlite3": "^7.4.6",
"express": "^4.17.2",
"gtfs": "^3.2.2",
"gtfs-realtime-bindings": "^0.0.6",
"long": "^4.0.0",
"node-cron": "^3.0.0",
"protobufjs": "^6.10.3"
},
"devDependencies": {
"dtslint": "^3.4.2",
"eslint": "^8.7.0",
"eslint-config-prettier": "^8.3.0",
"eslint-config-xo": "^0.39.0",
"husky": "^7.0.4",
"mocha": "^8.1.3",
"prettier": "^2.5.1",
"pretty-quick": "^3.1.3",
"should": "^13.2.3"
},
"engines": {
"node": ">= 14.17.0"
}
}