-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
65 lines (65 loc) · 1.81 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
57
58
59
60
61
62
63
64
65
{
"author": "danthonywalker",
"bugs": {
"url": "https://github.com/TheAntiCarCollective/transitland-rest-client/issues"
},
"description": "Easy to use, minimal, and simple implementation of the Transitland v2 REST API for fetching GTFS, GTFS Realtime, GBFS, and MDS data in Javascript and/or Typescript.",
"devDependencies": {
"@types/jest": "29.5.6",
"@typescript-eslint/eslint-plugin": "6.9.0",
"@typescript-eslint/parser": "6.9.0",
"eslint": "8.52.0",
"eslint-plugin-jest": "27.4.3",
"eslint-plugin-perfectionist": "2.2.0",
"eslint-plugin-sonarjs": "0.21.0",
"eslint-plugin-unicorn": "48.0.1",
"jest": "29.7.0",
"pino": "8.16.1",
"pino-pretty": "10.2.3",
"prettier": "3.0.3",
"quicktype": "23.0.76",
"shx": "0.3.4",
"ts-jest": "29.1.1",
"ts-node": "10.9.1"
},
"files": [
"/build"
],
"homepage": "https://github.com/TheAntiCarCollective/transitland-rest-client#readme",
"keywords": [
"api",
"api-client",
"api-rest",
"client",
"feed",
"gbfs",
"gtfs",
"gtfs-realtime",
"gtfs-rt",
"rest",
"rest-client",
"transitland",
"transit",
"transportation",
"v2"
],
"engines": {
"node": ">=18.0.0"
},
"license": "MIT",
"main": "build/index.js",
"name": "transitland-rest-client",
"repository": {
"type": "git",
"url": "git://github.com/TheAntiCarCollective/transitland-rest-client.git"
},
"scripts": {
"build": "npm run clean && tsc --project tsconfig.production.json",
"clean": "shx rm -rf ./build",
"generate-types": "ts-node scripts/generate-types.ts | pino-pretty && npm run prettier",
"prettier": "prettier --write .",
"test": "npm run clean && tsc --noemit && jest && eslint . && prettier --check ."
},
"types": "build/index.d.ts",
"version": "0.2.0"
}