-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
57 lines (57 loc) · 1.63 KB
/
package.json
File metadata and controls
57 lines (57 loc) · 1.63 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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
{
"name": "@cityssm/worktech-api",
"version": "0.18.1",
"description": "Integrations with the WorkTech (Pearl) work order management system.",
"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"
},
"license": "MIT",
"author": "The Corporation of the City of Sault Ste. Marie",
"sideEffects": false,
"type": "module",
"exports": {
".": "./index.js",
"./debug": "./debug.config.js"
},
"files": [
"helpers/*",
"queries/*",
"apiConfig.*",
"debug.config.*",
"index.*"
],
"scripts": {
"coverage": "c8 --reporter=lcov --reporter=text --reporter=text-summary node --test --test-concurrency=1",
"test": "node --test --test-concurrency=1",
"test:employees": "node --test \"test/employees.test.js\"",
"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\""
},
"overrides": {
"uuid": "14.0.0"
},
"dependencies": {
"@cacheable/node-cache": "^3.0.0",
"@cityssm/mssql-multi-pool": "^5.1.4",
"@cityssm/to-millis": "^1.0.1",
"@cityssm/utils-datetime": "^1.3.0",
"debug": "^4.4.3"
},
"devDependencies": {
"@types/debug": "^4.1.13",
"eslint-config-cityssm": "^39.1.0",
"prettier-config-cityssm": "^2.1.2"
}
}