-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
50 lines (50 loc) · 1.18 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
{
"name": "tfl-api-wrapper",
"version": "1.7.3",
"description": "A Node JS wrapper for the Transport for London API",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"prepublish": "tsc",
"files": [
"dist/**/*"
],
"scripts": {
"build": "tsc",
"build-docs": "typedoc --plugin ./typedoc/returnType.js",
"watch": "tsc-watch --onSuccess \"node dist/index.js\"",
"prettier": "prettier --write ./**/*.ts"
},
"keywords": [
"tfl",
"api",
"wrapper",
"typescript"
],
"author": "zackaryh8",
"license": "ISC",
"dependencies": {
"axios": "^0.21.2",
"fast-xml-parser": "^3.19.0",
"humps": "^2.0.1",
"trackernet-xml-retag": "^1.0.7"
},
"devDependencies": {
"@types/humps": "^2.0.0",
"@types/node": "^16.7.13",
"prettier": "^2.3.0",
"tsc-watch": "^4.2.9",
"typedoc": "^0.22.11",
"typescript": "^4.5.4"
},
"directories": {
"lib": "lib"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ZackaryH8/tfl-api-wrapper.git"
},
"bugs": {
"url": "https://github.com/ZackaryH8/tfl-api-wrapper/issues"
},
"homepage": "https://github.com/ZackaryH8/tfl-api-wrapper#readme"
}