forked from TheTransportLab/TSOpenLDB
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
40 lines (40 loc) · 1.06 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
{
"name": "@thetransportlab/tsopenldb",
"repository": {
"type": "git",
"url": "https://github.com/TheTransportLab/TSOpenLDB"
},
"version": "1.1.69",
"description": "A typescript implementation of the National Rail LDBSV web service API's",
"types": "./build/index.d.ts",
"main": "./build/index.js",
"scripts": {
"clean": "rimraf build/",
"prebuild": "npm run clean",
"build": "ttsc",
"dev": "ts-node src/index.ts",
"doc": "rimraf docs/ && typedoc"
},
"author": "Scott Pritchard",
"license": "ISC",
"devDependencies": {
"@types/moment-timezone": "^0.5.13",
"@types/node": "^13.1.7",
"rimraf": "^3.0.2",
"ts-node": "^8.4.1",
"ts-optchain": "^0.1.8",
"ttypescript": "^1.5.15",
"typedoc": "^0.16.2",
"typescript": "^3.6.4",
"typescript-transform-paths": "^1.1.11"
},
"dependencies": {
"@types/node-fetch": "^2.5.2",
"@types/xml2js": "^0.4.5",
"date-fns": "^2.11.1",
"geo-tz": "^5.1.0",
"moment-timezone": "^0.5.28",
"node-fetch": "^2.6.0",
"xml2js": "^0.4.22"
}
}