-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
62 lines (62 loc) · 1.36 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
57
58
59
60
61
62
{
"name": "instant-system.js",
"version": "0.0.2",
"description": "A wrapper for the Instant System API used by many local transport companies.",
"readme": "README.md",
"maintainers": [
{
"name": "Tom Theret",
"email": "[email protected]",
"url": "https://github.com/tom-theret"
}
],
"author": {
"name": "Tom Theret",
"email": "[email protected]",
"url": "https://github.com/tom-theret"
},
"repository": {
"type": "git",
"url": "https://github.com/tom-theret/instant-system.js.git"
},
"homepage": "https://github.com/tom-theret/instant-system.js#readme",
"bugs": {
"url": "https://github.com/tom-theret/instant-system.js/issues"
},
"keywords": [
"API",
"Instant System",
"local transport",
"transport",
"wrapper",
"bus",
"train",
"tramway",
"metro",
"ferry",
"taxi",
"bike",
"cycle"
],
"license": "GPL-3.0-or-later",
"main": "./dist/index.js",
"types": "./types/index.d.ts",
"files": [
"dist",
"types"
],
"scripts": {
"build": "npm i && tsc -p tsconfig.json",
"lint": "eslint src/ --ext .ts"
},
"dependencies": {
"@types/node": "^22.1.0",
"typescript": "^5.5.4"
},
"devDependencies": {
"@eslint/js": "^9.8.0",
"eslint": "^9.8.0",
"globals": "^15.9.0",
"typescript-eslint": "^8.0.1"
}
}