Skip to content

Commit

Permalink
fix(dep): add node-gyp to dependencies for avoid use global node-gyp
Browse files Browse the repository at this point in the history
  • Loading branch information
acrazing committed Dec 1, 2017
1 parent 7bf2a6a commit bfbbba0
Show file tree
Hide file tree
Showing 2 changed files with 480 additions and 9 deletions.
7 changes: 4 additions & 3 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,10 +2,10 @@
"name": "talib-binding",
"main": "./build/Release/talib_binding.node",
"types": "./src/talib-binding.generated.d.ts",
"version": "0.3.2",
"version": "0.4.0",
"license": "MIT",
"scripts": {
"install": "node-gyp configure build -j4"
"install": "./node_modules/.bin/node-gyp configure build -j4"
},
"description": "A synchronous [TA-Lib](http://ta-lib.org/) bindings for Node.js & TypeScript.",
"devDependencies": {
Expand All @@ -19,7 +19,8 @@
"xml2js": "^0.4.19"
},
"dependencies": {
"nan": "^2.7.0"
"nan": "^2.7.0",
"node-gyp": "^3.6.2"
},
"repository": {
"type": "git",
Expand Down
Loading

0 comments on commit bfbbba0

Please sign in to comment.