-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
154 lines (154 loc) · 4.04 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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
{
"name": "@oada/jobs",
"version": "4.7.4",
"description": "A library for oada job based microservices",
"source": "src/index.ts",
"main": "dist/index.js",
"type": "module",
"publishConfig": {
"access": "public"
},
"bin": {
"oada-jobs": "./dist/cli.mjs"
},
"types": "dist/index.d.js",
"files": [
"src/**",
"dist/**"
],
"repository": "https://github.com/oada/jobs",
"author": "Andrew Balmos <abalmos@purdue.edu>",
"license": "Apache-2.0",
"scripts": {
"start": "ts-node src/index.ts",
"prepare": "npm run build",
"build": "tsc -b",
"watch": "tsc -b --watch",
"test": "yarn build test && c8 ava",
"test:debug": "ava -T 60m -svc 1 --no-worker-threads"
},
"ava": {
"failFast": false,
"files": [
"**/report.test.ts"
],
"typescript": {
"extensions": [
"ts"
],
"rewritePaths": {
"src/": "dist/",
"test/": ".test/"
},
"compile": false
}
},
"c8": {
"reporter": [
"text",
"lcov"
],
"all": true,
"src": "src",
"exclude": [
"*.d.ts",
".pnp.*",
".test"
]
},
"packageManager": "yarn@4.5.0",
"dependencies": {
"@ava/typescript": "^5.0.0",
"@oada/lib-prom": "^3.8.0",
"@oada/list-lib": "^4.3.0",
"@oada/oadaify": "^2.1.0",
"@oada/pino-debug": "^4.0.1",
"@oada/types": "^3.5.3",
"@sindresorhus/is": "^6.3.1",
"ava": "^6.1.3",
"c8": "^10.1.2",
"chalk": "^5.3.0",
"clone-deep": "^4.0.1",
"cron": "^3.1.7",
"csvjson": "^5.1.0",
"debug": "^4.3.7",
"eventemitter3": "^5.0.1",
"json-pointer": "^0.6.2",
"jsonpath-plus": "^8.1.0",
"ksuid": "^3.0.0",
"minimist": "^1.2.8",
"moment": "^2.30.1",
"p-queue": "^8.0.1",
"p-timeout": "^6.1.2",
"perf_hooks": "^0.0.1",
"serialize-error": "^11.0.3",
"tiny-json-http": "^7.5.1",
"tslib": "^2.7.0",
"xlsx": "https://cdn.sheetjs.com/xlsx-0.20.2/xlsx-0.20.2.tgz"
},
"peerDependencies": {
"@oada/client": "^4.5.5"
},
"peerDependenciesMeta": {
"@oada/client": {
"optional": true
}
},
"devDependencies": {
"@commitlint/config-conventional": "^18.6.3",
"@oada/client": "^5.1.0",
"@tsconfig/node20": "^20.1.4",
"@types/chai": "^4.3.19",
"@types/clone-deep": "^4.0.4",
"@types/convict": "^6.1.6",
"@types/cron": "^2.4.0",
"@types/debug": "^4.1.12",
"@types/json-pointer": "^1.0.34",
"@types/minimist": "^1.2.5",
"@types/moment": "^2.13.0",
"@types/node": "^16.18.108",
"@types/tiny-json-http": "^7.3.4",
"@typescript-eslint/eslint-plugin": "^7.18.0",
"@typescript-eslint/parser": "^7.18.0",
"@yarnpkg/pnpify": "^4.1.2",
"@yarnpkg/sdks": "^3.2.0",
"chai": "^5.1.1",
"commitlint": "^18.6.1",
"convict": "^6.2.4",
"dotenv": "^16.4.5",
"eslint": "^8.57.1",
"eslint-config-prettier": "^9.1.0",
"eslint-config-xo": "^0.44.0",
"eslint-config-xo-typescript": "^2.1.1",
"eslint-plugin-array-func": "^5.0.2",
"eslint-plugin-ava": "^14.0.0",
"eslint-plugin-escompat": "^3.11.1",
"eslint-plugin-eslint-comments": "^3.2.0",
"eslint-plugin-filenames": "^1.3.2",
"eslint-plugin-github": "^4.10.2",
"eslint-plugin-i18n-text": "^1.0.1",
"eslint-plugin-import": "^2.30.0",
"eslint-plugin-no-constructor-bind": "^2.0.4",
"eslint-plugin-no-only-tests": "^3.3.0",
"eslint-plugin-no-secrets": "^0.8.9",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-notice": "^0.9.10",
"eslint-plugin-optimize-regex": "^1.2.1",
"eslint-plugin-prettier": "^5.2.1",
"eslint-plugin-promise": "^6.6.0",
"eslint-plugin-regexp": "^2.6.0",
"eslint-plugin-security": "^2.1.1",
"eslint-plugin-sonarjs": "^0.24.0",
"eslint-plugin-unicorn": "^51.0.1",
"prettier": "^3.3.3",
"ts-node": "^10.9.2",
"typescript": "5.6.2"
},
"volta": {
"node": "20.11.0"
},
"resolutions": {
"xksuid": "https://github.com/g12i/xksuid.git#fix-crypto-polyfill",
"xlsx": "https://cdn.sheetjs.com/xlsx-0.20.2/xlsx-0.20.2.tgz"
}
}