-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
45 lines (45 loc) · 1.38 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
{
"name": "@cityssm/worktech-api",
"version": "0.9.0",
"description": "Integrations with the WorkTech work order management system.",
"type": "module",
"exports": {
".": "./index.js",
"./debug": "./debug.config.js"
},
"scripts": {
"test": "node --test --test-concurrency=1",
"test:equipment": "node --test \"test/equipment.test.js\"",
"test:helpers": "node --test \"test/helpers.test.js\"",
"test:items": "node --test \"test/items.test.js\"",
"test:workOrders": "node --test \"test/workOrders.test.js\"",
"coverage": "c8 --reporter=lcov --reporter=text --reporter=text-summary node --test --test-concurrency=1"
},
"keywords": [
"worktech",
"work-manager",
"work-orders"
],
"homepage": "https://github.com/cityssm/node-worktech-api#readme",
"bugs": {
"url": "https://github.com/cityssm/node-worktech-api/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/cityssm/node-worktech-api.git"
},
"author": "The Corporation of the City of Sault Ste. Marie",
"license": "MIT",
"devDependencies": {
"@types/debug": "^4.1.12",
"eslint-config-cityssm": "^18.3.0",
"prettier-config-cityssm": "^1.0.0"
},
"dependencies": {
"@cityssm/mssql-multi-pool": "^5.0.0",
"@cityssm/to-millis": "^1.0.0",
"@cityssm/utils-datetime": "^1.3.0",
"debug": "^4.4.0",
"node-cache": "^5.1.2"
}
}