-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
40 lines (40 loc) · 1.4 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
{
"name": "@cityssm/faster-unofficial-api",
"version": "0.2.0",
"type": "module",
"description": "An unofficial API for the FASTER Web fleet management system relying on Puppeteer scripts, exported reports, and complex parsers.",
"exports": "./index.js",
"scripts": {
"test": "cross-env NODE_ENV=dev DEBUG=faster-unofficial-api:*,faster-report-exporter:*,faster-report-parser:* node --test",
"coverage": "cross-env NODE_ENV=dev DEBUG=faster-unofficial-api:*,faster-report-exporter:*,faster-report-parser:* c8 --reporter=lcov --reporter=text --reporter=text-summary node --test"
},
"repository": {
"type": "git",
"url": "git+https://github.com/cityssm/node-faster-unofficial-api.git"
},
"keywords": [
"faster-web",
"fmis",
"asset-management",
"fleet-management",
"puppeteer"
],
"author": "The Corporation of the City of Sault Ste. Marie",
"license": "MIT",
"bugs": {
"url": "https://github.com/cityssm/node-faster-unofficial-api/issues"
},
"homepage": "https://github.com/cityssm/node-faster-unofficial-api#readme",
"devDependencies": {
"@types/debug": "^4.1.12",
"@types/node": "^22.10.5",
"eslint-config-cityssm": "^18.3.0",
"prettier-config-cityssm": "^1.0.0"
},
"dependencies": {
"@cityssm/faster-report-exporter": "^0.4.1",
"@cityssm/faster-report-parser": "^0.3.0",
"@cityssm/to-millis": "^1.0.0",
"debug": "^4.4.0"
}
}