-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
45 lines (45 loc) · 955 Bytes
/
package.json
File metadata and controls
45 lines (45 loc) · 955 Bytes
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
{
"name": "vr",
"version": "0.3.0",
"author": "Jani Luukko <jj.luukko@gmail.com>",
"description": "Wrapper for Finnish railway traffic data (legacy, not actively maintained)",
"contributors": [
{
"name": "Jani Luukko",
"email": "jj.luukko@gmail.com"
}
],
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"repository": {
"type": "git",
"url": "https://github.com/JaniL/vr.git"
},
"keywords": [
"vr",
"train",
"finnish",
"api",
"digitraffic",
"legacy",
"deprecated"
],
"scripts": {
"build": "tsc -p tsconfig.json",
"prepare": "npm run build",
"test": "npm run build && mocha \"test/**/*.js\""
},
"dependencies" : {
"undici": "^6.19.8"
},
"devDependencies": {
"@types/mocha": "^10.0.10",
"@types/node": "^20.17.30",
"mocha": "^11.2.2",
"typescript": "^5.8.2"
},
"noAnalyze": false,
"engines": {
"node": ">=16"
}
}