-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
45 lines (45 loc) · 1.27 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
{
"name": "sncf.js",
"version": "2.4.8",
"description": "An easy to use javascript module to get all the information in real time about the trains ©SNCF (only in France)",
"scripts": {
"test": "nodemon test.js --watch test.js --watch dist",
"publish": "npm run build && npm publish --access public",
"build": "tsc",
"build_auto": "nodemon --watch src --exec \"npm run build\"",
"docs:prep": "tsc && api-extractor run --local --verbose && api-documenter markdown --input-folder=./temp/ --output-folder=./docs-src/api && rm -rf ./temp",
"docs:dev": "npm run docs:prep && vitepress dev docs-src",
"docs:build": "npm run docs:prep && vitepress build docs-src"
},
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"keywords": [
"SNCF",
"API",
"FRENCH",
"TRAIN",
"EASY TO USE"
],
"publishConfig": {
"access": "public"
},
"author": "Alexis06030631",
"license": "ISC",
"dependencies": {
"axios": "1.6.0"
},
"devDependencies": {
"@types/node": "^20.1.0",
"nodemon": "^3.1.0",
"typescript": "^5.0.4",
"vitepress": "^1.0.0-beta.3"
},
"homepage": "alexis06030631.github.io/SNCF.js/",
"repository": {
"type": "git",
"url": "https://github.com/Alexis06030631/SNCF.js.git"
},
"bugs": {
"url": "https://github.com/Alexis06030631/SNCF.js/issues"
}
}