-
Notifications
You must be signed in to change notification settings - Fork 524
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 #551 from NickNaso/node-addon-api
bcrypt for Node.js with Node addon api
- Loading branch information
Showing
7 changed files
with
154 additions
and
192 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
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 |
---|---|---|
|
@@ -14,7 +14,7 @@ | |
"version": "1.0.3", | ||
"author": "Nick Campbell (https://github.com/ncb000gt)", | ||
"engines": { | ||
"node": ">= 0.6.0" | ||
"node": ">= 4.0.0" | ||
}, | ||
"repository": { | ||
"type": "git", | ||
|
@@ -29,8 +29,9 @@ | |
"install": "node-pre-gyp install --fallback-to-build" | ||
}, | ||
"dependencies": { | ||
"nan": "2.6.2", | ||
"node-pre-gyp": "0.6.36" | ||
"bindings": "1.3.0", | ||
"node-addon-api": "1.1.0", | ||
"node-pre-gyp": "0.6.39" | ||
}, | ||
"devDependencies": { | ||
"nodeunit": "~0.9.1" | ||
|
@@ -50,7 +51,8 @@ | |
"Nate Rajlich <[email protected]> (https://github.com/tootallnate)", | ||
"Sean McArthur <[email protected]> (https://github.com/seanmonstar)", | ||
"Fanie Oosthuysen <[email protected]> (https://github.com/weareu)", | ||
"Amitosh Swain Mahapatra <[email protected]> (https://github.com/Agathver)" | ||
"Amitosh Swain Mahapatra <[email protected]> (https://github.com/Agathver)", | ||
"Nicola Del Gobbo <[email protected]> (https://github.com/NickNaso)" | ||
], | ||
"binary": { | ||
"module_name": "bcrypt_lib", | ||
|
Oops, something went wrong.