-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
142 lines (142 loc) · 3.6 KB
/
Copy pathpackage.json
File metadata and controls
142 lines (142 loc) · 3.6 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
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
{
"name": "flowrunner",
"version": "1.4.1",
"description": "API Flow Creation and Visualization Tool",
"main": "main.js",
"type": "module",
"engines": {
"node": ">=18"
},
"scripts": {
"start": "electron .",
"postinstall": "electron-builder install-app-deps",
"build:island": "npm --prefix visualizer-island install --no-audit --no-fund && npm --prefix visualizer-island run build",
"prebuild": "npm run build:island",
"predist": "npm run build:island",
"prepack": "npm run build:island",
"pack": "electron-builder --dir",
"dist": "electron-builder",
"lint": "echo \"Error: no lint script specified\" && exit 0",
"test": "NODE_OPTIONS=--experimental-vm-modules jest",
"e2e": "NODE_ENV=test xvfb-run -a -s \"-screen 0 1280x720x24\" playwright test",
"e2e:local": "NODE_ENV=test playwright test"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Radware/FlowRunner.git"
},
"keywords": [
"api",
"flow",
"visualizer",
"electron",
"automation",
"testing",
"radware"
],
"author": "Radware ASE Team",
"license": "MIT",
"bugs": {
"url": "https://github.com/Radware/FlowRunner#issues"
},
"homepage": "https://github.com/Radware/FlowRunner#readme",
"devDependencies": {
"@babel/core": "^7.26.10",
"@babel/preset-env": "^7.26.9",
"@playwright/test": "^1.52.0",
"@testing-library/jest-dom": "^6.4.2",
"@types/jest": "^29.5.14",
"babel-jest": "^29.7.0",
"electron": "^31.2.1",
"electron-builder": "^26.0.12",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"playwright": "^1.52.0",
"@vitejs/plugin-react": "^5.1.0",
"@xyflow/react": "^12.11.1",
"react": "^19.2.0",
"react-dom": "^19.2.0",
"vite": "^7.1.0"
},
"dependencies": {
"@dagrejs/dagre": "^1.1.4",
"electron-store": "^11.0.2",
"elkjs": "^0.9.3",
"fuse.js": "^7.4.2",
"immer": "^10.2.0"
},
"build": {
"appId": "com.radware.flowrunner",
"productName": "FlowRunner",
"copyright": "Copyright \u00a9 2024 Radware ASE Team",
"files": [
"main.js",
"preload.js",
"index.html",
"logger.js",
"config.js",
"app.js",
"appFeatures.js",
"backgroundRuns.js",
"autoLayout.js",
"contextMenu.js",
"dialogs.js",
"domUtils.js",
"flowIndex.js",
"launchConfigPopover.js",
"launchFlows.js",
"listSelection.js",
"runPicker.js",
"eventHandlers.js",
"executionHelpers.js",
"fileOperations.js",
"fuzzySearch.js",
"undoManager.js",
"flowHistory.js",
"flowBuilderComponent.js",
"flowCore.js",
"flowRunner.js",
"flowStepComponents.js",
"flowVisualizer.js",
"reactFlowVisualizer.js",
"modelUtils.js",
"palette.js",
"jsonView.js",
"demoMode.js",
"firstRun.js",
"runnerInterface.js",
"state.js",
"workspaceManager.js",
"harExporter.js",
"importCurlHar.js",
"importCurlHarUI.js",
"transformOps.js",
"uiUtils.js",
"utils.js",
"styles.css",
"help-styles.css",
"help.html",
"package.json",
"httpbin-flow.flow.json",
"httpbin.yaml",
"schemas/**/*",
"assets/**/*",
"assets/visualizer-island/**/*"
],
"mac": {
"icon": "assets/icon.icns",
"target": "dmg"
},
"win": {
"target": "nsis",
"icon": "assets/icon.ico"
},
"nsis": {
"oneClick": false,
"allowToChangeInstallationDirectory": true
},
"linux": {
"target": "AppImage"
}
}
}