generated from bennycode/ts-node-starter
-
-
Notifications
You must be signed in to change notification settings - Fork 90
/
package.json
96 lines (96 loc) · 3.16 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
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
{
"bugs": {
"url": "https://github.com/bennycode/trading-signals/issues"
},
"dependencies": {
"@types/big.js": "^6.2.0",
"big.js": "^6.2.1"
},
"description": "Technical indicators to run technical analysis with JavaScript / TypeScript.",
"devDependencies": {
"@tstv/eslint-config": "^3.1.6",
"@types/benchmark": "^2.1.3",
"@types/node": "^18.15.11",
"@vitest/coverage-v8": "^1.1.1",
"benchmark": "^2.1.4",
"eslint": "^8.50.0",
"generate-changelog": "^1.8.0",
"husky": "^4.3.8",
"lint-staged": "^15.0.2",
"prettier": "^3.2.5",
"pretty-quick": "^4.0.0",
"rimraf": "^6.0.1",
"ts-node": "^10.9.1",
"typedoc": "0.26.10",
"typedoc-plugin-markdown": "^4.0.3",
"typescript": "^5.2.2",
"vitest": "^1.1.1"
},
"files": [
"dist",
"!dist/start",
"!dist/test",
"!dist/**/*.test.*"
],
"homepage": "https://bennycode.com/trading-signals",
"keywords": [
"adx",
"analysis",
"atr",
"average",
"bollinger",
"dema",
"dma",
"ema",
"exponential-moving-average",
"indicator",
"macd",
"math",
"moving-average",
"roc",
"rsi",
"signals",
"simple-moving-average",
"sma",
"smma",
"technical",
"technical-indicators",
"technical-overlays",
"trading"
],
"license": "MIT",
"main": "dist/index.js",
"name": "trading-signals",
"repository": {
"type": "git",
"url": "git+https://github.com/bennycode/trading-signals.git"
},
"scripts": {
"build": "tsc",
"changelog:commit": "git add CHANGELOG.md && git commit -m \"docs: updated CHANGELOG.md\"",
"clean": "rimraf coverage dist docs",
"dist": "npm run clean && npm run build",
"docs": "npm run docs:build",
"docs:build": "typedoc src/index.ts",
"docs:release": "npm run docs:build && git add docs/* && git commit -m \"docs: Updated API\"",
"fix": "npm run fix:other && npm run fix:code",
"fix:code": "npm run lint:code -- --fix",
"fix:other": "npm run prettier -- --write",
"lint": "npm run lint:types && npm run lint:code && npm run lint:other",
"lint:code": "eslint --ignore-path .gitignore --ext .js,.jsx,.ts,.tsx .",
"lint:other": "npm run prettier -- --list-different",
"lint:types": "tsc --noEmit",
"postversion": "git push origin && git push origin --tags && npm publish",
"prettier": "prettier --ignore-path .gitignore --loglevel error \"**/*.{json,scss,yml}\"",
"preversion": "git checkout main && git pull && npm install && npm run test && npm run dist",
"release:major": "generate-changelog -M -x \"chore,test\" && npm run changelog:commit && npm run docs:release && npm version major",
"release:minor": "generate-changelog -m -x \"chore,test\" && npm run changelog:commit && npm run docs:release && npm version minor",
"release:patch": "generate-changelog -p -x \"chore,test\" && npm run changelog:commit && npm run docs:release && npm version patch",
"start:benchmark": "ts-node ./src/start/startBenchmark.ts",
"test": "npm run test:dev -- --coverage",
"test:dev": "vitest run --passWithNoTests",
"test:types": "npm run lint:types"
},
"type": "module",
"version": "5.0.4"
}