-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
49 lines (49 loc) · 1.14 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
{
"name": "insomnia-plugin-run-all-requests",
"version": "1.0.1",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/schminkel/insomnia-plugin-run-all-requests"
},
"description": "Insomnia plugin that provides the action 'Run All Requests' on a folder.",
"insomnia": {
"name": "Run All Requests",
"displayName": "Run All Requests",
"description": "Run all requests in a folder.",
"publisher": {
"name": "Thorsten Schminkel",
"icon": "https://github.com/schminkel.png"
},
"images": {
"icon": "./assets/icon.png"
},
"applications": {
"core": "*"
}
},
"keywords": [
"insomnia",
"plugin",
"plugins",
"run",
"requests",
"batch"
],
"main": "dist/index.js",
"scripts": {
"dev": "parcel watch --no-source-maps src/index.js",
"build": "parcel build --no-source-maps src/index.js"
},
"dependencies": {
"@emotion/css": "11.11.2",
"clsx": "^2.0.0",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-spinners": "^0.13.8"
},
"devDependencies": {
"@types/react": "^18.2.25",
"parcel": "^2.9.3"
}
}