-
Notifications
You must be signed in to change notification settings - Fork 19
/
Copy pathpackage.json
47 lines (47 loc) · 1.15 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
{
"name": "talib-binding",
"main": "./build/Release/talib_binding.node",
"types": "./src/talib-binding.generated.d.ts",
"version": "1.0.2",
"license": "MIT",
"files": [
"binding.gyp",
"ta-lib/",
"src/talib-binding.generated.cc",
"src/talib-binding.generated.d.ts"
],
"scripts": {
"install": "node-gyp configure build -j4"
},
"description": "A synchronous [TA-Lib](http://ta-lib.org/) bindings for Node.js & TypeScript.",
"devDependencies": {
"@types/yargs": "^13.0.3",
"@types/glob": "^7.1.1",
"@types/node": "^12.12.14",
"@types/xml2js": "^0.4.5",
"glob": "^7.1.6",
"json2ts": "^0.0.7",
"monofile-utilities": "^4.9.0",
"xml2js": "^0.4.22"
},
"dependencies": {
"nan": "^2.14.0",
"node-gyp": "^6.0.1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/acrazing/talib-binding-node.git"
},
"keywords": [
"talib",
"binding",
"node",
"synchronous",
"ta-lib"
],
"author": "acrazing",
"bugs": {
"url": "https://github.com/acrazing/talib-binding-node/issues"
},
"homepage": "https://github.com/acrazing/talib-binding-node#readme"
}