-
Notifications
You must be signed in to change notification settings - Fork 10
Expand file tree
/
Copy pathpackage.json
More file actions
65 lines (65 loc) · 1.74 KB
/
package.json
File metadata and controls
65 lines (65 loc) · 1.74 KB
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
{
"name": "pump-bot",
"version": "1.0.0",
"author": "Andrea Valla <valla.andrea@gmail.com>",
"license": "MIT",
"description": "A simple bot that helps to take profit in organized pump events for cryptos.",
"main": "program.js",
"scripts": {
"compress": "npx gzip-cli build/pump-bot* -o build/",
"debug": "node --inspect=127.0.0.1:9239 main.js",
"format": "npx prettier --write \"**/*.{js,jsx,ts,tsx,json,md}\"",
"lint": "npx eslint",
"lint:watch": "npx esw -w --color",
"release": "yarn release:linux && yarn release:mac && yarn release:win",
"release:linux": "npx pkg package.json --output build/pump-bot-linux-x64 -t node12-linux-x64",
"release:mac": "npx pkg package.json --output build/pump-bot-macos-x64 -t node12-macos-x64",
"release:win": "npx pkg package.json --output build/pump-bot-win-x64.exe -t node12-win-x64",
"start": "node program.js",
"test": "npx jest --silent"
},
"keywords": [
"coin",
"crypto",
"cryptocurrency",
"cryptocurrency-trading-bot",
"binance",
"bot",
"trade",
"trading",
"binance",
"pump",
"pump-and-dump"
],
"dependencies": {
"chalk": "^4.1.0",
"commander": "^7.2.0",
"date-fns": "^2.19.0",
"debug": "^4.3.1",
"husky": "^6.0.0",
"js-yaml": "^4.0.0",
"node-binance-api": "^0.12.5"
},
"devDependencies": {
"eslint": "^7.20.0",
"eslint-watch": "^7.0.0",
"gzip-cli": "^1.2.0",
"jest": "^26.6.3",
"pkg": "^4.5.1",
"prettier": "^2.2.1",
"pretty-quick": "^3.1.0"
},
"husky": {
"hooks": {
"pre-commit": "pretty-quick --staged"
}
},
"engines": {
"node": ">=12.x.x"
},
"bin": "program.js",
"jest": {
"displayName": "pump-bot",
"verbose": true
}
}