-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
58 lines (58 loc) · 1.38 KB
/
package.json
File metadata and controls
58 lines (58 loc) · 1.38 KB
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
{
"name": "metlink-nz",
"version": "0.0.0",
"description": "A Node.js API wrapper for Metlink — the public transport system serving Te Upoko o te Ika a Māui Greater Wellington.",
"main": "dist/src/Metlink.js",
"types": "dist/src/Metlink.d.ts",
"files": [
"dist",
"README.md",
"LICENCE"
],
"scripts": {
"build": "rm -rf dist && tsc",
"clean": "rm -rf dist",
"test": "jest",
"docs": "typedoc --options ./typedoc.config.js",
"docs:watch": "typedoc --options ./typedoc.config.js --watch"
},
"engines": {
"node": ">=22"
},
"publishConfig": {
"access": "public"
},
"repository": {
"type": "git",
"url": "git+https://github.com/carolinaisslaying/metlink.git"
},
"keywords": [
"api",
"wellington",
"new-zealand",
"public-transport",
"metlink",
"aotearoa",
"metlink-api",
"public-transport-api"
],
"author": "Carolina Mitchell",
"license": "AGPL-3.0",
"bugs": {
"url": "https://github.com/carolinaisslaying/metlink/issues"
},
"homepage": "https://github.com/carolinaisslaying/metlink#readme",
"dependencies": {
"axios": "^1.12.2"
},
"devDependencies": {
"@jest/types": "^30.2.0",
"@types/jest": "^30.0.0",
"@types/mocha": "^10.0.10",
"@types/node": "^24.9.1",
"jest": "^30.2.0",
"ts-jest": "^29.4.5",
"typedoc": "^0.28.14",
"typescript": "^5.9.3"
}
}