forked from conductor-oss/javascript-sdk
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
100 lines (100 loc) · 2.61 KB
/
package.json
File metadata and controls
100 lines (100 loc) · 2.61 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
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
{
"name": "@io-orkes/conductor-javascript",
"description": "Typescript Client for Netflix Conductor",
"version": "v0.0.0",
"private": false,
"homepage": "https://orkes.io",
"repository": {
"type": "git",
"url": "https://github.com/conductor-sdk/conductor-javascript"
},
"keywords": [
"conductor",
"workflow",
"orchestration",
"microservice"
],
"author": "Conductor community",
"license": "Apache-2.0",
"contributors": [
{
"name": "Black Diamond"
},
{
"name": "Nick Tomlin"
},
{
"name": "James Stuart Milne"
}
],
"engines": {
"node": ">=18"
},
"files": [
"dist",
"README.md"
],
"exports": {
".": {
"types": "./dist/index.d.ts",
"require": "./dist/index.js",
"import": "./dist/index.mjs"
}
},
"main": "dist/index.js",
"scripts": {
"lint": "npx eslint .",
"lint-fix": "npx eslint . --fix",
"test": "cross-env ORKES_BACKEND_VERSION=5 jest --force-exit --detectOpenHandles",
"test:unit": "jest --force-exit --detectOpenHandles --testMatch='**/src/**/__tests__/**/*.test.[jt]s?(x)'",
"test:integration:base": "jest --force-exit --detectOpenHandles --testMatch='**/src/integration-tests/*.test.[jt]s?(x)'",
"test:integration:orkes-v5": "cross-env ORKES_BACKEND_VERSION=5 npm run test:integration:base --",
"test:integration:orkes-v4": "cross-env ORKES_BACKEND_VERSION=4 npm run test:integration:base --",
"ci": "npm run lint && npm run test",
"build": "tsup index.ts",
"generate-openapi-layer": "openapi-ts",
"generate-docs": "typedoc --plugin typedoc-plugin-markdown",
"prepublishOnly": "npm run build"
},
"devDependencies": {
"@eslint/js": "^9.34.0",
"@hey-api/openapi-ts": "^0.85.2",
"@tsconfig/node18": "^18.2.4",
"@types/node": "^22.0.0",
"@types/uuid": "^9.0.1",
"cross-env": "^10.1.0",
"dotenv": "^16.0.1",
"eslint": "^9.34.0",
"jest": "^30.1.3",
"jest-junit": "^16.0.0",
"ts-jest": "^29.4.2",
"tsup": "^8.5.0",
"typedoc": "^0.28.11",
"typescript": "^5.9.2",
"typescript-eslint": "^8.41.0",
"uuid": "^9.0.0"
},
"optionalDependencies": {
"undici": "^7.16.0"
},
"tsup": {
"target": "node18",
"sourcemap": true,
"format": [
"esm",
"cjs"
],
"dts": true,
"clean": true,
"splitting": false
},
"jest-junit": {
"outputDirectory": "reports",
"outputName": "jest-junit.xml",
"ancestorSeparator": " > ",
"uniqueOutputName": "false",
"suiteNameTemplate": "{filepath}",
"classNameTemplate": "{classname}",
"titleTemplate": "{title}"
}
}