-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
executable file
·37 lines (37 loc) · 926 Bytes
/
package.json
File metadata and controls
executable file
·37 lines (37 loc) · 926 Bytes
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
{
"name": "@runnerty/executor-http",
"version": "3.2.1",
"description": "Runnerty module: HTTP executor",
"author": "Runnerty Tech",
"license": "MIT",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"lint": "eslint '**/*.js' && prettier --check '**'"
},
"repository": {
"type": "git",
"url": "git+https://github.com/runnerty/executor-http.git"
},
"keywords": [
"runnerty",
"executor",
"http"
],
"bugs": {
"url": "https://github.com/runnerty/executor-http/issues"
},
"homepage": "https://github.com/runnerty/executor-http#readme",
"dependencies": {
"@runnerty/module-core": "~3.1.1",
"axios": "~1.5.0",
"form-data": "~4.0.0",
"qs": "~6.11.2"
},
"devDependencies": {
"eslint": "^8.49.0",
"eslint-config-prettier": "^8.10.0",
"eslint-plugin-prettier": "^4.2.1",
"prettier": "^2.8.8"
}
}