-
-
Notifications
You must be signed in to change notification settings - Fork 58
/
package.json
64 lines (64 loc) · 1.94 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": "indicatorts",
"version": "2.2.1",
"description": "Stock technical indicators and strategies in TypeScript for browser and server programs.",
"main": "dist/cjs/index.js",
"module": "dist/esm/index.js",
"types": "dist/types/index.d.ts",
"files": [
"/dist"
],
"scripts": {
"build": "npx rimraf dist && npm run build-esm; npm run build-cjs; npm run build-types",
"build-esm": "esbuild src/index.ts --bundle --outdir=dist/esm --platform=browser --format=esm --minify --sourcemap",
"build-cjs": "esbuild src/index.ts --bundle --outdir=dist/cjs --platform=node --format=cjs --minify --sourcemap",
"build-types": "tsc --emitDeclarationOnly --declaration --outDir dist/types",
"lint": "eslint --ignore-path .gitignore .",
"fix": "prettier --ignore-path .gitignore --write . ; eslint --fix --ext .ts src",
"test": "jest"
},
"repository": {
"type": "git",
"url": "git+ssh://[email protected]/cinar/indicatorts.git"
},
"keywords": [
"analysis",
"bollinger-bands",
"finance",
"financial-instruments",
"ichimoku",
"indicators",
"macd",
"quant",
"quantative-finance",
"quantative-trading",
"stock-analysis",
"stock-market",
"strategies",
"technical",
"technical-analysis",
"technical-analysis-indicators",
"technical-analysis-library",
"trading-algorithms",
"trading-strategies",
"yahoo-finance"
],
"author": "Onur Cinar <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/cinar/indicatorts/issues"
},
"homepage": "https://github.com/cinar/indicatorts#readme",
"devDependencies": {
"@types/jest": "^29.5.12",
"@typescript-eslint/eslint-plugin": "^7.6.0",
"@typescript-eslint/parser": "^7.6.0",
"esbuild": "^0.20.2",
"eslint": "^8.57.0",
"eslint-config-prettier": "^9.1.0",
"jest": "^29.7.0",
"prettier": "^3.2.5",
"ts-jest": "^29.1.2",
"typescript": "^5.4.5"
}
}