-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
68 lines (68 loc) · 1.94 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
65
66
67
68
{
"name": "big-island-buses",
"version": "3.0.0",
"description": "A far easier to use unofficial schedule for the Hawaii Hele-On Bus.",
"private": true,
"type": "module",
"dependencies": {
"csv-parse": "^4.14.2",
"fuse.js": "^6.4.6",
"ix": "^4.0.0",
"jszip": "^3.5.0",
"spherical-geometry-js": "^2.0.0"
},
"devDependencies": {
"@11ty/eleventy": "^0.11.1",
"@rollup/plugin-node-resolve": "^11.0.1",
"@rollup/plugin-typescript": "^8.1.0",
"@types/google.analytics": "^0.0.41",
"@types/googlemaps": "^3.43.0",
"ava": "^3.15.0",
"eleventy-plugin-date": "^1.0.0",
"html-minifier": "^4.0.0",
"prettier": "^2.2.1",
"rollup": "^2.36.0",
"rollup-plugin-consts": "^1.0.2",
"rollup-plugin-svelte": "^7.0.0",
"rollup-plugin-terser": "^7.0.2",
"svelte": "^3.31.2",
"svelte-check": "^1.1.24",
"svelte-preprocess": "^4.6.1",
"ts-node": "^9.1.1",
"tslib": "^2.1.0",
"type-fest": "^0.20.2",
"typescript": "^4.1.3"
},
"repository": "github:NotWoods/big-island-buses",
"author": "Tiger Oakes",
"license": "UNLICENSED",
"bugs": {
"url": "https://github.com/NotWoods/big-island-buses/issues"
},
"homepage": "https://github.com/NotWoods/big-island-buses#readme",
"scripts": {
"prebuild": "tsc --build src && rollup -c",
"build": "node src/lib/cli.js google_transit.zip src/site/_data/",
"postbuild": "eleventy --config=.eleventy.cjs",
"lint:files": "prettier \"*.{md,css,html}\" \"src/**/*.ts\" \"!src/**/*.d.ts\" *.js **/tsconfig.json",
"lint": "npm run lint:files -- --write",
"lint:check": "npm run lint:files -- --check",
"pretest": "tsc --build src",
"test": "ava"
},
"ava": {},
"prettier": {
"singleQuote": true,
"trailingComma": "all",
"proseWrap": "always",
"overrides": [
{
"files": "*.html",
"options": {
"printWidth": 120,
"tabWidth": 2
}
}
]
}
}