-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
41 lines (41 loc) · 1.03 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
{
"name": "@cityssm/ncic-lookup",
"version": "0.3.1",
"type": "module",
"engines": {
"node": ">=18.0.0"
},
"description": "Translates NCIC codes into meaningful names",
"exports": {
".": "./index.js",
"./helpers/*.js": "./helpers/*.js"
},
"scripts": {
"build": "node ./build/build.js",
"test": "node --test",
"coverage": "c8 --reporter=lcov --reporter=text --reporter=text-summary node --test"
},
"keywords": [
"automobiles",
"ncic",
"neim",
"vma"
],
"repository": {
"type": "git",
"url": "git+https://github.com/cityssm/node-ncic-lookup.git"
},
"author": "The Corporation of the City of Sault Ste. Marie",
"license": "MIT",
"bugs": {
"url": "https://github.com/cityssm/node-ncic-lookup/issues"
},
"homepage": "https://github.com/cityssm/node-ncic-lookup#readme",
"devDependencies": {
"@types/node": "^22.10.2",
"@types/xml2js": "^0.4.14",
"eslint-config-cityssm": "^18.1.2",
"prettier-config-cityssm": "^1.0.0",
"xml2js": "^0.6.2"
}
}