diff options
author | Andre Heinecke <[email protected]> | 2018-08-22 11:15:35 +0000 |
---|---|---|
committer | Andre Heinecke <[email protected]> | 2018-08-22 11:15:35 +0000 |
commit | 59ed27bae14da6c1ba6848b34acfc836846a27bc (patch) | |
tree | f9efc016f561129c4c02f41bf0e84b566883d6eb /lang/js/package.json | |
parent | json: Add proper decrypt_result_t handling (diff) | |
parent | js: changed verify signature result infos (diff) | |
download | gpgme-59ed27bae14da6c1ba6848b34acfc836846a27bc.tar.gz gpgme-59ed27bae14da6c1ba6848b34acfc836846a27bc.zip |
Merge branch 'javascript-binding'
This adds a new language binding "gpgme.js" to GPGME. It
serves as a bridge between the native-messaging service "gpgme-json"
and JavaScript Applications.
The first user of this binding will be Mailvelope which will
see GnuPG integration in the near future.
GnuPG-Bug-Id: T4107
Diffstat (limited to 'lang/js/package.json')
-rw-r--r-- | lang/js/package.json | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/lang/js/package.json b/lang/js/package.json new file mode 100644 index 00000000..54af2982 --- /dev/null +++ b/lang/js/package.json @@ -0,0 +1,17 @@ +{ + "name": "gpgmejs", + "version": "0.0.1-dev", + "description": "Javascript part of the GPGME nativeMessaging integration", + "main": "src/index.js", + "private": true, + "keywords": [], + "author": "", + "license": "LGPL-2.1+", + "devDependencies": { + "webpack": "^4.5.0", + "webpack-cli": "^3.0.8", + "chai": "^4.1.2", + "mocha": "^5.1.1", + "jsdoc": "^3.5.5" + } +} |