-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathpackage.json
64 lines (64 loc) · 1.73 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
{
"name": "n8n-nodes-binance",
"version": "0.0.4",
"description": "N8N nodes for Binance Exchange",
"keywords": [
"n8n-community-node-package"
],
"license": "MIT",
"homepage": "",
"author": {
"name": "Duc Pham",
"email": "ducpmm@gmail.com"
},
"repository": {
"type": "git",
"url": "https://github.com/germanynick/n8n-nodes-binance.git"
},
"main": "index.js",
"scripts": {
"prebuild": "rimraf dist",
"build": "tsc && gulp build:icons",
"predev": "npm run build & npm link & npm link n8n-nodes-binance",
"dev": "npm run watch & npm run n8n:watch",
"watch": "tsc --watch",
"format": "prettier nodes credentials --write",
"n8n": "n8n start",
"n8n:watch": "nodemon --exec npm run n8n",
"lint": "tslint -p tsconfig.json -c tslint.json && eslint nodes credentials package.json",
"lintfix": "tslint --fix -p tsconfig.json -c tslint.json && eslint nodes credentials package.json --fix",
"prepublishOnly": "npm run build && npm run lint -c .eslintrc.prepublish.js nodes credentials package.json"
},
"files": [
"dist"
],
"n8n": {
"n8nNodesApiVersion": 1,
"credentials": [
"dist/credentials/BinanceApi.credentials.js"
],
"nodes": [
"dist/nodes/Binance/Binance.node.js",
"dist/nodes/Binance/BinanceTrigger.node.js"
]
},
"devDependencies": {
"@types/express": "^4.17.17",
"@types/request-promise-native": "~1.0.18",
"@typescript-eslint/parser": "^5.51.0",
"eslint": "^8.34.0",
"eslint-plugin-n8n-nodes-base": "^1.12.1",
"gulp": "^4.0.2",
"n8n": "1.32.2",
"n8n-core": "^0.154.1",
"n8n-workflow": "^0.136.1",
"nodemon": "^2.0.20",
"prettier": "^2.8.4",
"tslint": "^6.1.3",
"typescript": "~4.9.5"
},
"dependencies": {
"binance-api-node": "^0.12.3",
"technicalindicators": "^3.1.0"
}
}