-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
47 lines (47 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
45
46
47
{
"name": "@cityssm/dynamics-gp",
"version": "1.1.0",
"description": "Read only inquiries into Microsoft Dynamics GP using a SQL Server connection.",
"keywords": [
"cash-receipts",
"dynamics-gp",
"invoices",
"microsoft-dynamics",
"microsoft-dynamics-gp",
"mssql",
"sql-server"
],
"homepage": "https://github.com/cityssm/node-dynamics-gp#readme",
"bugs": {
"url": "https://github.com/cityssm/node-dynamics-gp/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/cityssm/node-dynamics-gp.git"
},
"license": "MIT",
"author": "The Corporation of the City of Sault Ste. Marie",
"type": "module",
"exports": {
".": "./index.js",
"./debug": "./debug.config.js"
},
"scripts": {
"test": "node --test",
"coverage": "c8 --reporter=lcov --reporter=text --reporter=text-summary node --test"
},
"dependencies": {
"@cityssm/mssql-multi-pool": "^5.0.0",
"@cityssm/to-millis": "^1.0.0",
"node-cache": "^5.1.2"
},
"devDependencies": {
"@types/debug": "^4.1.12",
"debug": "^4.4.0",
"eslint-config-cityssm": "^18.3.0",
"prettier-config-cityssm": "^1.0.0"
},
"engines": {
"node": ">=18.0.0"
}
}