-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
46 lines (46 loc) · 1.23 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
{
"name": "@netresearch/node-red-contrib-magento-eqp",
"version": "3.0.6",
"description": "Node-RED module for parsing callbacks from the Magento Marketplace EQP API",
"main": "dist/index.js",
"repository": {
"type": "git",
"url": "https://github.com/netresearch/node-red-contrib-magento-eqp.git"
},
"author": "DevMiner <devminer@devminer.xyz>",
"license": "MIT",
"node-red": {
"nodes": {
"magento-eqp-config": "dist/magento-eqp-config.js",
"magento-eqp-callback-parser": "dist/magento-eqp-callback-parser.js",
"magento-eqp-register-callback": "dist/magento-eqp-register-callback.js"
}
},
"keywords": [
"node-red"
],
"scripts": {
"build": "yarn build:lib && node copyAssets.js",
"build:lib": "tsc",
"build:lib:dev": "tsc -w",
"lint": "eslint src --ext .ts,.html",
"prepack": "yarn build"
},
"dependencies": {
"@netresearch/node-magento-eqp": "^4.0.1",
"axios": "^1.4.0",
"node-red-contrib-typescript-node": "^0.1.0"
},
"devDependencies": {
"@types/node": "^22.0.0",
"@types/node-red": "0.20.7",
"@typescript-eslint/eslint-plugin": "^8.0.0",
"@typescript-eslint/parser": "^8.0.0",
"eslint": "^8.45.0",
"eslint-plugin-html": "^8.0.0",
"typescript": "^5.1.6"
},
"engines": {
"node": ">=12"
}
}