-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
68 lines (68 loc) · 1.78 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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
{
"name": "@andreashauschild/node-red-contrib-ethers-node",
"version": "0.0.28",
"description": "Node-Red noded for wrapping ethers functions.",
"main": "index.js",
"keywords": [
"node-red"
],
"files": [
"/nodes",
"dist/src"
],
"watch": {
"watch.dev": {
"ignore": "nodes/lib",
"patterns": [
"nodes",
"src"
],
"extensions": "js,ts,html",
"delay": 500
}
},
"scripts": {
"watch.dev": "npx tsc && kill-port 1880 && node-red",
"watch": "npm-watch",
"build": "tsc"
},
"repository": {
"type": "git",
"url": "git+https://github.com/andreashauschild/node-red-contrib-ethers-node.git"
},
"author": "Andreas Hauschild",
"license": "MIT",
"bugs": {
"url": "https://github.com/andreashauschild/node-red-contrib-ethers-node/issues"
},
"homepage": "https://github.com/andreashauschild/node-red-contrib-ethers-node#readme",
"engines": {
"node": ">=12.0.0"
},
"node-red": {
"version": ">=2.0.0",
"nodes": {
"transfer": "nodes/ethers-transfer.js",
"ethers-credentials": "nodes/ethers-credentials.js",
"ethers-rpc": "nodes/ethers-rpc.js",
"ethers-deploy": "nodes/ethers-deploy.js",
"ethers-contract": "nodes/ethers-contract.js",
"ethers-write-contract": "nodes/ethers-write-contract.js",
"ethers-read-contract": "nodes/ethers-read-contract.js",
"ethers-read-account": "nodes/ethers-read-account.js",
"ethers-events": "nodes/ethers-events.js",
"ethers-provider": "nodes/ethers-provider.js"
}
},
"dependencies": {
"ethers": "^5.5.3",
"rxjs": "^7.5.2",
"typescript": "^4.7.2"
},
"devDependencies": {
"eslint": "^8.7.0",
"hardhat": "^2.8.3",
"kill-port": "^1.6.1",
"npm-watch": "^0.11.0"
}
}