scrapemyferry 1.0.0 → 1.0.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +1 -1
- package/bin/scrapemyferry.js +0 -0
- package/package.json +13 -13
package/README.md
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
# scrapemyferry
|
|
2
2
|
|
|
3
|
-
A node library to scrape the BC Ferries website for schedule data using [scrape-it](https://github.com/IonicaBizau/scrape-it).
|
|
3
|
+
A node library to scrape the [BC Ferries website](https://www.bcferries.com/) for schedule data using [scrape-it](https://github.com/IonicaBizau/scrape-it).
|
|
4
4
|
|
|
5
5
|
## Installation
|
|
6
6
|
|
package/bin/scrapemyferry.js
CHANGED
|
File without changes
|
package/package.json
CHANGED
|
@@ -1,21 +1,11 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "scrapemyferry",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.1",
|
|
4
4
|
"description": "Scapes your ferry data.",
|
|
5
5
|
"main": "dist/index.js",
|
|
6
6
|
"types": "dist/index.d.ts",
|
|
7
7
|
"bin": {
|
|
8
|
-
"scrapemyferry": "
|
|
9
|
-
},
|
|
10
|
-
"scripts": {
|
|
11
|
-
"clean": "rimraf dist",
|
|
12
|
-
"build": "tsc",
|
|
13
|
-
"dev": "tsx src/cli.ts",
|
|
14
|
-
"start": "node dist/cli.js",
|
|
15
|
-
"test": "jest",
|
|
16
|
-
"test:live": "LIVE_TESTS=true jest",
|
|
17
|
-
"test:watch": "jest --watch",
|
|
18
|
-
"test:coverage": "jest --coverage"
|
|
8
|
+
"scrapemyferry": "bin/scrapemyferry.js"
|
|
19
9
|
},
|
|
20
10
|
"keywords": [],
|
|
21
11
|
"author": "",
|
|
@@ -35,5 +25,15 @@
|
|
|
35
25
|
"ts-jest": "^29.1.2",
|
|
36
26
|
"tsx": "^4.19.1",
|
|
37
27
|
"typescript": "^5.6.2"
|
|
28
|
+
},
|
|
29
|
+
"scripts": {
|
|
30
|
+
"clean": "rimraf dist",
|
|
31
|
+
"build": "tsc",
|
|
32
|
+
"dev": "tsx src/cli.ts",
|
|
33
|
+
"start": "node dist/cli.js",
|
|
34
|
+
"test": "jest",
|
|
35
|
+
"test:live": "LIVE_TESTS=true jest",
|
|
36
|
+
"test:watch": "jest --watch",
|
|
37
|
+
"test:coverage": "jest --coverage"
|
|
38
38
|
}
|
|
39
|
-
}
|
|
39
|
+
}
|