-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
64 lines (64 loc) · 1.46 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
53
54
55
56
57
58
59
60
61
62
63
64
{
"name": "slow-zone",
"version": "4.2.0",
"description": "A client & wrapper for CTA 'L' arrival data",
"author": "Jeff Long",
"license": "MIT",
"exports": "./dist/index.js",
"type": "module",
"types": "dist/index.d.ts",
"sideEffects": false,
"dependencies": {
"luxon": "3.5.0"
},
"devDependencies": {
"@eslint/compat": "^1.1.0",
"@eslint/eslintrc": "^3.1.0",
"@eslint/js": "^9.6.0",
"@types/luxon": "3.4.2",
"@types/node": "^22.0.0",
"@typescript-eslint/eslint-plugin": "^8.0.0",
"@typescript-eslint/parser": "^8.0.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-import": "^2.29.1",
"globals": "^15.7.0",
"prettier": "3.4.2",
"timekeeper": "^2.0.0",
"typescript": "^5.3.3",
"vitest": "^2.0.1"
},
"scripts": {
"build": "tsc",
"prettier": "prettier --write .",
"prettier:check": "prettier --check .",
"test": "vitest",
"lint": "eslint .",
"typecheck": "tsc -b"
},
"engines": {
"node": ">=18"
},
"repository": {
"type": "git",
"url": "git+https://github.com/banterability/slow-zone.git"
},
"bugs": {
"url": "https://github.com/banterability/slow-zone/issues"
},
"homepage": "https://github.com/banterability/slow-zone",
"keywords": [
"cta",
"subway",
"chicago",
"l",
"public transit"
],
"files": [
"dist/**/*.js",
"dist/**/*.d.ts",
"!dist/**/*.test.js"
],
"directories": {
"test": "test"
}
}