-
Notifications
You must be signed in to change notification settings - Fork 40
/
Copy pathpackage.json
63 lines (63 loc) · 1.53 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
{
"name": "ta-math",
"version": "1.0.92",
"description": "Technical analysis library in javascript. Calculates indicators and overlays from ohlcv data",
"main": "dist/ta-math.js",
"types": "dist/types/index.d.ts",
"module": "dist/ta-math.esm.js",
"browser": "dist/ta-math.es5.js",
"files": [
"dist"
],
"scripts": {
"start": "servez -S",
"build": "rollup -c && npm run build:clean",
"watch": "rollup -cw",
"test": "node -r esm ./test/test.js",
"wasm": "asc src/index.ts -b dist/ta-math.wasm -O2",
"ci": "npm run build && npm run test",
"cov": "nyc report --reporter=lcov",
"python": "python ./test/expected.py",
"build:clean": "find dist -maxdepth 1 -name '*.d.ts' -type f -delete"
},
"devDependencies": {
"@babel/core": "7.19.6",
"@babel/preset-env": "7.19.4",
"assemblyscript": "0.21.6",
"esm": "3.2.25",
"nyc": "15.1.0",
"rollup": "3.2.3",
"rollup-plugin-babel": "4.4.0",
"rollup-plugin-typescript2": "0.34.1",
"typescript": "4.8.4",
"zora": "5.1.0"
},
"babel": {
"presets": [
"@babel/preset-env"
]
},
"nyc": {
"reporter": [
"lcov",
"text"
],
"include": "**/ta-math**"
},
"keywords": [
"technical-indicators",
"technical-analysis",
"quantitative-finance",
"correlation-matrix",
"finance"
],
"repository": {
"type": "git",
"url": "git+https://github.com/munrocket/ta-math.git"
},
"author": "munrocket",
"license": "MIT",
"dependencies": {
"servez": "^1.14.1"
}
}