-
Notifications
You must be signed in to change notification settings - Fork 13
/
package.json
45 lines (45 loc) · 996 Bytes
/
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
{
"name": "@ixjb94/indicators",
"version": "1.2.4",
"description": "Fastest Technical Indicators written in typescript. More than +100 indicators(SMA, EMA, RSI, MACD, ...)",
"main": "dist/index.js",
"module": "src/index.ts",
"types": "dist/index.d.ts",
"files": [
"dist",
"src"
],
"scripts": {
"test": "jest",
"test:watch": "jest --watch",
"test:coverage": "jest --coverage",
"webpack": "npx webpack",
"pub": "tsc && npm run webpack && npm version patch && npm publish && git push origin master",
"tsc": "tsc"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ixjb94/indicators.git"
},
"keywords": [
"indicators",
"ema",
"sma",
"rsi",
"cci",
"technical indicators",
"chart",
"trade"
],
"author": "IX JB",
"license": "MIT",
"devDependencies": {
"@types/jest": "^29.5.10",
"@types/node": "^18.11.11",
"jest": "^29.7.0",
"ts-jest": "^29.1.1",
"ts-loader": "^9.4.2",
"webpack": "^5.75.0",
"webpack-cli": "^5.0.1"
}
}