UNPKG

885 BJSONView Raw
1{
2 "name": "node-red-contrib-axios",
3 "version": "0.2.0",
4 "description": "A http request node for Node-RED",
5 "scripts": {
6 "test": "mocha test/axios_spec.js"
7 },
8 "keywords": [
9 "node-red",
10 "http",
11 "request",
12 "axios"
13 ],
14 "homepage": "https://github.com/steineey/node-red-contrib-axios",
15 "bugs": "https://github.com/steineey/node-red-contrib-axios/issues",
16 "repository": {
17 "type": "git",
18 "url": "https://github.com/steineey/node-red-contrib-axios"
19 },
20 "author": "steineey (https://github.com/steineey)",
21 "license": "MIT",
22 "dependencies": {
23 "axios": "^0.27.2"
24 },
25 "node-red": {
26 "version": ">=2.0.0",
27 "nodes": {
28 "axios": "src/axios.js"
29 }
30 },
31 "devDependencies": {
32 "express": "^4.18.1",
33 "mocha": "^10.0.0",
34 "node-red": "^3.0.2",
35 "node-red-node-test-helper": "^0.3.0",
36 "should": "^13.2.3"
37 }
38}