-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
38 lines (38 loc) · 841 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
{
"name": "amtrak",
"version": "3.0.5",
"description": "A simple and easy way to parse data from Amtrak's train tracking API.",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"start": "npx ts-node ./src/index.ts",
"build": "rimraf ./build && tsc"
},
"author": "Piero Maddaleni <[email protected]> (https://piemadd.com/)",
"license": "AGPL",
"homepage": "https://github.com/piemadd/amtrak",
"bin": "./cli/cli.mjs",
"keywords": [
"amtrak",
"amtrak tracking",
"amtrak train",
"train",
"train tracking",
"tracking",
"trains",
"railroad",
"railway"
],
"devDependencies": {
"@types/node": "^18.13.0",
"rimraf": "^4.1.2",
"ts-node": "^10.9.1",
"typescript": "^4.9.5"
},
"dependencies": {
"axios": "^1.3.3",
"colors": "^1.4.0",
"enquirer": "^2.3.6",
"nodemon": "^2.0.20"
}
}