-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
44 lines (44 loc) · 1.2 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
{
"name": "@cityssm/wsib-clearance-check",
"version": "4.0.2",
"description": "A tool to scrape the clearance certificate status from the WSIB Online Services website.",
"keywords": [
"wsib",
"workplace-safety-and-insurance-board",
"ontario",
"canada",
"clearance-certificate",
"web-scraping"
],
"homepage": "https://github.com/cityssm/wsib-clearance-check#readme",
"bugs": {
"url": "https://github.com/cityssm/wsib-clearance-check/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/cityssm/wsib-clearance-check.git"
},
"license": "MIT",
"author": "The Corporation of the City of Sault Ste. Marie",
"type": "module",
"exports": "./index.js",
"types": "./index.d.ts",
"scripts": {
"test": "node --test",
"coverage": "c8 --reporter=lcov --reporter=text --reporter=text-summary node --test"
},
"dependencies": {
"@cityssm/puppeteer-launch": "^3.1.0",
"exit-hook": "^4.0.0",
"htmlparser2": "^9.1.0",
"set-interval-async": "^3.0.3"
},
"devDependencies": {
"@types/node": "^22.9.1",
"eslint-config-cityssm": "^15.2.0",
"prettier-config-cityssm": "^1.0.0"
},
"engines": {
"node": ">=18.0.0"
}
}