-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
52 lines (52 loc) · 1.14 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
{
"name": "mycicero.js",
"version": "1.0.8",
"description": "npm package to get Italian Transport Solutions and other data powered by MyCicero.",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"build": "tsc",
"prepare": "npm run build",
"test": "jest ./tests/"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Bavuett/mycicero.js.git"
},
"keywords": [
"transport",
"italy",
"mycicero",
"bus",
"train",
"underground",
"api",
"api-wrapper",
"public-transportation"
],
"author": "Lorenzo Barretta",
"license": "MIT",
"bugs": {
"url": "https://github.com/Bavuett/mycicero.js/issues"
},
"homepage": "https://github.com/Bavuett/mycicero.js#readme",
"dependencies": {
"node-fetch": "^2.6.7",
"tslib": "^2.4.1"
},
"devDependencies": {
"@types/jest": "^29.2.3",
"@types/node": "^22.7.4",
"@types/node-fetch": "^2.6.2",
"jest": "^29.3.1",
"typescript": "^5.0.2"
},
"files": [
"dist/*.js",
"dist/*.d.ts",
"dist/**/*.js",
"dist/**/*.js.map",
"dist/**/*.d.ts",
"dist/**/*.d.ts.map"
]
}