-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
35 lines (35 loc) · 1.15 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
{
"name": "@routinghub/schema-tools",
"version": "0.1.0",
"repository": "https://github.com/routinghub/schema-tools",
"author": "Denis Kurilov <[email protected]>",
"license": "MIT",
"scripts": {
"fetch-routing-schema": "curl https://routinghub.com/api/routing/v1-devel/schemas/openapi.json > src/routing.openapi.json",
"build-routing-schema": "yarn ts-node-transpile-only src/bin/openapi-convert.ts",
"routing-schema": "target=routing-schema; yarn fetch-$target && yarn build-$target",
"convert-routing-excel": "yarn ts-node-transpile-only src/bin/excel-parse.ts"
},
"engines": {
"node": ">=15",
"yarn": ">=1.1.0"
},
"dependencies": {},
"devDependencies": {
"@apidevtools/json-schema-ref-parser": "^9.0.7",
"@babel/core": "^7.14.3",
"@babel/preset-typescript": "^7.13.0",
"@types/jest": "^26.0.23",
"@types/json-schema": "^7.0.7",
"@types/luxon": "^1.26.5",
"@types/node": "^15.6.1",
"exceljs": "^4.2.1",
"jest": "^27.0.3",
"luxon": "^1.27.0",
"remark-parse": "^9.0.0",
"ts-jest": "^27.0.2",
"ts-node": "^10.0.0",
"typescript": "^4.3.2",
"unified": "^9.2.1"
}
}