-
Notifications
You must be signed in to change notification settings - Fork 287
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #189 from neon-bindings/local-node-gyp
run node-gyp from a local dependency
- Loading branch information
Showing
3 changed files
with
21 additions
and
58 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,12 +1,17 @@ | ||
{ | ||
"main": "index.js", | ||
"scripts": { | ||
"preinstall": "echo 'Skipping node-gyp installation as part of npm install.'" | ||
"preinstall": "echo 'Skipping node-gyp installation as part of npm install.'", | ||
"configure-release": "node-gyp configure --verbose", | ||
"configure-debug": "node-gyp configure --verbose --debug", | ||
"build-release": "node-gyp build", | ||
"build-debug": "node-gyp build --debug" | ||
}, | ||
"devDependencies": { | ||
"nan": "^2.3.2" | ||
}, | ||
"dependencies": { | ||
"bindings": "1.2.1" | ||
"bindings": "1.2.1", | ||
"node-gyp": "^3.5.0" | ||
} | ||
} |