-
-
Notifications
You must be signed in to change notification settings - Fork 13
/
package.json
52 lines (52 loc) · 1.19 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": "hk-bus-eta",
"version": "3.5.5",
"description": "Query the ETA (Estimated Time of Arrival) of HK Bus/Minibus/MTR/Lightrail",
"main": "dist/index.js",
"module": "esm/index.js",
"files": [
"dist",
"esm",
"src"
],
"scripts": {
"clean": "rimraf esm dist",
"test": "jest",
"prebuild": "yarn clean && yarn test",
"build:esm": "tsc --target es2018 --outDir esm",
"build:cjs": "tsc --target es2015 --module commonjs --outDir dist",
"build": "yarn build:cjs && yarn build:esm",
"prepublish": "yarn build",
"est": "ts-node ./est.ts"
},
"repository": {
"type": "git",
"url": "git+https://github.com/hkbus/hk-bus-eta.git"
},
"keywords": [
"eta",
"hkbus",
"bus-eta",
"bus-schedule",
"hk-bus",
"bus",
"mtr",
"lightrail",
"minibus",
"data.gov.hk"
],
"author": "chunlaw",
"license": "GPL-3.0-only",
"bugs": {
"url": "https://github.com/hkbus/hk-bus-eta/issues"
},
"homepage": "https://hk-bus-eta.hkbus.app/",
"devDependencies": {
"@types/jest": "^29.5.4",
"jest": "^29.6.4",
"rimraf": "^5.0.1",
"ts-jest": "^29.1.1",
"ts-node": "^10.9.1",
"typescript": "^5.2.2"
}
}