-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
58 lines (58 loc) · 1.86 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
{
"name": "@cityssm/faster-report-parser",
"version": "0.3.0",
"type": "module",
"engines": {
"node": ">=18.0.0"
},
"description": "Parses select Excel and CSV reports from the FASTER Web Fleet Management System into usable data objects.",
"exports": {
".": "./index.js",
"./index": "./index.js",
"./index.js": "./index.js",
"./csv": "./csvReports.js",
"./csvReports": "./csvReports.js",
"./csvReports.js": "./csvReports.js",
"./xlsx": "./xlsxReports.js",
"./xlsxReports": "./xlsxReports.js",
"./xlsxReports.js": "./xlsxReports.js"
},
"scripts": {
"test": "node --test",
"test:csv": "node --test --test-name-pattern=\"node-faster-report-parser/csv\"",
"test:xlsx": "cross-env NODE_ENV=dev DEBUG=faster-report-parser:* node --test --test-name-pattern=\"node-faster-report-parser/xlsx\"",
"coverage": "c8 --reporter=lcov --reporter=text --reporter=text-summary node --test"
},
"keywords": [
"faster-web",
"fmis",
"asset-management",
"fleet-management",
"csv-parser",
"xlsx-parser"
],
"repository": {
"type": "git",
"url": "git+https://github.com/cityssm/node-faster-report-parser.git"
},
"author": "The Corporation of the City of Sault Ste. Marie",
"license": "MIT",
"bugs": {
"url": "https://github.com/cityssm/node-faster-report-parser/issues"
},
"homepage": "https://github.com/cityssm/node-faster-report-parser#readme",
"devDependencies": {
"@types/debug": "^4.1.12",
"@types/node": "^22.9.1",
"@types/papaparse": "^5.3.15",
"eslint-config-cityssm": "^15.2.0",
"prettier-config-cityssm": "^1.0.0"
},
"dependencies": {
"@cityssm/string-to-numeric": "^1.0.0",
"@cityssm/utils-datetime": "^1.3.0",
"debug": "^4.3.7",
"papaparse": "^5.4.1",
"xlsx": "https://github.com/cityssm/node-dependencies/raw/main/xlsx/xlsx-0.20.2.tgz"
}
}