-
Notifications
You must be signed in to change notification settings - Fork 142
/
package.json
67 lines (67 loc) · 1.97 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
{
"name": "@alleyway/add-tradingview-alerts-tool",
"repository": {
"type": "git",
"url": "[email protected]:alleyway/add-tradingview-alerts-tool.git"
},
"bugs": {
"url": "https://github.com/alleyway/add-tradingview-alerts-tool/issues"
},
"description": "Add TradingView Alerts in bulk",
"type": "module",
"main": "./dist/index.js",
"bin": {
"atat": "./dist/cli.js"
},
"files": [
"src",
"dist",
"tsconfig.json",
"!**/*.test.**"
],
"scripts": {
"build": "npx tsc",
"atat": "node --no-warnings ./dist/cli.js",
"prepublishOnly": "npm run build",
"release": "echo 'MAKE SURE YOU RUN ./deploy_master.sh first! and DO NOT PUBLISH FROM HERE!' && npx release-it",
"release-beta": "echo 'MAKE SURE to TAG your beta for github actions to deploy npm package!!' && npx release-it --preRelease=beta --config .release-it.beta-nopublish.json",
"prepare": "husky install",
"test": "rm -Rf ./user_data && node --experimental-vm-modules --trace-warnings node_modules/.bin/vitest run",
"test:ci": "rm -Rf ./user_data && node --experimental-vm-modules --trace-warnings node_modules/.bin/vitest run --coverage.enabled",
"test:watch": "node_modules/.bin/vitest --watch"
},
"keywords": [
"tradingview",
"alerts",
"3commas",
"indicator"
],
"author": "Michael Lake",
"license": "MIT",
"version": "3.0.4",
"dependencies": {
"commander": "^11.1.0",
"consola": "^3.2.3",
"dotenv": "^16.4.5",
"extensionless": "^1.9.6",
"fast-csv": "^4.3.6",
"kleur": "^4.1.5",
"lodash.get": "^4.4.2",
"pacote": "^17.0.6",
"puppeteer": "^22.2.0",
"regex-parser": "^2.3.0",
"semver": "^7.6.0",
"yaml": "^2.3.4"
},
"devDependencies": {
"@release-it/bumper": "^6.0.1",
"@types/node": "^20.11.19",
"@vitest/coverage-v8": "^1.3.1",
"@vitest/ui": "^1.3.1",
"husky": "^8.0.3",
"release-it": "^17.1.1",
"typescript": "^5.3.3",
"vitest": "^1.3.1"
},
"private": false
}