-
-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
39 lines (39 loc) · 968 Bytes
/
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
{
"name": "trackmania.io",
"version": "3.2.2",
"description": "Node.js inplementation of Trackmania Live services (trackmania.io)",
"main": "src/index.js",
"types": "typings/index.d.ts",
"scripts": {
"test": "eslint . && mocha --exit",
"prepack": "tsc",
"dts": "tsc",
"docs": "docgen --source src --custom docs/index.yml --output docs/docs.json"
},
"repository": {
"type": "git",
"url": "git+https://github.com/GreepTheSheep/node-trackmania.io.git"
},
"keywords": [
"trackmania",
"api",
"services"
],
"author": "Greep",
"license": "GPL-3.0",
"bugs": {
"url": "https://github.com/GreepTheSheep/node-trackmania.io/issues"
},
"homepage": "https://tmio.greep.gq/",
"dependencies": {
"luxon": "^3.5.0",
"node-fetch": "2.6.7"
},
"devDependencies": {
"@discordjs/docgen": "0.11.1",
"dotenv": "16.4.7",
"eslint": "7.31.0",
"mocha": "11.0.1",
"typescript": "5.7.2"
}
}