forked from newproplus/talib-web
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
47 lines (47 loc) · 999 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
46
47
{
"name": "talib-web",
"version": "0.1.3",
"description": "TA-Lib C code ported to WebAssembly",
"license": "BSD-3-Clause",
"repository": {
"type": "git",
"url": "https://github.com/ancheGT/talib-web.git"
},
"bugs": "https://github.com/ancheGT/talib-web/issues",
"homepage": "https://ancheGT.github.io/talib-web/",
"author": "ancheGT",
"main": "./lib/index.cjs.js",
"module": "./lib/index.esm.js",
"unpkg": "./lib/index.umd.js",
"types": "./lib/index.d.ts",
"devDependencies": {
"gh-pages": "^3.1.0",
"prettier": "^2.2.1",
"typedoc": "^0.19.2",
"typescript": "^4.1.2"
},
"scripts": {
"build": "make",
"gh-pages": "gh-pages -d docs -t"
},
"keywords": [
"talib",
"ta-lib",
"browser",
"wasm",
"webassembly",
"emscripten",
"technical",
"analysis",
"technical analysis",
"quant",
"quantitative",
"finance",
"stocks"
],
"files": [
"lib/*",
"LICENSE",
"README.md"
]
}