This repository has been archived by the owner on Nov 13, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
56 lines (56 loc) · 1.46 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
{
"name": "metro-info",
"version": "1.1.0",
"author": "Alex Miller <codex.nz@gmail.com>",
"description": "Christchurch (Unofficial) MetroInfo API NodeJS library",
"repository": {
"type": "git",
"url": "git+https://github.com/Codex-/metro-info.git"
},
"bugs": {
"url": "https://github.com/Codex-/metro-info/issues"
},
"homepage": "https://github.com/Codex-/metro-info#readme",
"license": "MIT",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"build": "tsc -p tsconfig.build.json",
"format:check": "prettier --check \"{**/*,*}.{js,ts}\"",
"format:write": "npm run format:check -- --write",
"lint": "eslint --ext \".js,.ts\" .",
"release": "release-it",
"test": "jest"
},
"files": [
"dist/**/*"
],
"dependencies": {
"node-fetch": "^3.3.2",
"xml-js": "^1.6.11"
},
"devDependencies": {
"@types/jest": "^29.5.7",
"@types/node-fetch": "^3.0.2",
"@typescript-eslint/eslint-plugin": "^5.62.0",
"@typescript-eslint/parser": "^5.62.0",
"eslint": "^8.52.0",
"eslint-config-airbnb-typescript": "^17.1.0",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-import": "^2.29.0",
"eslint-plugin-prettier": "^4.2.1",
"jest": "^29.7.0",
"prettier": "^2.8.8",
"release-it": "^16.2.1",
"ts-jest": "^29.1.1",
"ts-node": "^10.9.1",
"typescript": "^5.2.2"
},
"keywords": [
"bus",
"metro",
"metroinfo",
"connections",
"api"
]
}