-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
50 lines (50 loc) · 1.71 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
{
"name": "insomnia-plugin-batch-requests",
"description": "An Insomnia plugin that can send a request multiple times, varying the request with data taken from a CSV file and extracting information from the responses back into the CSV file",
"homepage": "https://github.com/jreyesr/insomnia-plugin-batch-requests",
"repository": {
"url": "https://github.com/jreyesr/insomnia-plugin-batch-requests"
},
"version": "1.5.0",
"author": {
"name": "jreyesr",
"url": "https://github.com/jreyesr"
},
"bugs": {
"url": "https://github.com/jreyesr/insomnia-plugin-batch-requests/issues"
},
"license": "MIT",
"insomnia": {
"name": "batch-requests",
"displayName": "Batch Requests",
"description": "The Batch Requests plugin can repeatedly send a request, replacing data with information taken from a CSV file. The response can be used to fill other columns of the CSV file."
},
"main": "dist/main.js",
"scripts": {
"dev": "parcel watch --no-source-maps main.js",
"build": "parcel build --no-source-maps main.js",
"test": "jest",
"coverage": "jest --coverage"
},
"dependencies": {
"csv-stringify": "^6.2.4",
"csvtojson": "^2.0.10",
"jsonpath-plus": "^7.2.0",
"queue-promise": "^2.2.1",
"react": "^18.2.0",
"react-dom": "^18.2.0"
},
"devDependencies": {
"@babel/preset-env": "^7.20.2",
"@babel/preset-react": "^7.18.6",
"@testing-library/jest-dom": "^5.16.5",
"@testing-library/react": "^14.0.0",
"@testing-library/user-event": "^14.4.3",
"babel-jest": "^29.5.0",
"babel-preset-react-app": "^10.0.1",
"jest": "^29.5.0",
"jest-environment-jsdom": "^29.5.0",
"parcel": "^2.8.3",
"react-test-renderer": "^18.2.0"
}
}