-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
43 lines (43 loc) · 1.16 KB
/
package.json
File metadata and controls
43 lines (43 loc) · 1.16 KB
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
{
"name": "@cityssm/mto-handler",
"version": "0.2.1",
"type": "module",
"engines": {
"node": ">=18.0.0"
},
"description": "Generates files compatible with the Ontario Ministry of Transportation's Authorized Requester Information Services (ARIS). Parses files downloaded from ARIS.",
"exports": {
".": "./index.js",
"./parser.js": "./mtoBatchParser.js",
"./writer.js": "./mtoBatchWriter.js"
},
"scripts": {
"test": "node --test",
"coverage": "c8 node --test"
},
"keywords": [
"aris",
"mto",
"ontario"
],
"repository": {
"type": "git",
"url": "git+https://github.com/cityssm/node-mto-handler.git"
},
"author": "The Corporation of the City of Sault Ste. Marie",
"license": "MIT",
"bugs": {
"url": "https://github.com/cityssm/node-mto-handler/issues"
},
"homepage": "https://github.com/cityssm/node-mto-handler#readme",
"devDependencies": {
"@types/node": "^22.10.2",
"eslint-config-cityssm": "^18.1.2",
"prettier-config-cityssm": "^1.0.0"
},
"dependencies": {
"@cityssm/is-sault-ste-marie": "^0.4.0",
"@cityssm/ncic-lookup": "^0.3.1",
"@cityssm/utils-datetime": "^1.3.0"
}
}