onf-gpg-wrapper
Version:
A simple wrapper for GPG.
46 lines (44 loc) • 1.51 kB
JSON
{
"name": "onf-gpg-wrapper",
"version": "0.2.0",
"description": "A simple wrapper for GPG.",
"main": "index.js",
"keywords": [
"crypto",
"cryptography",
"GPG",
"PGP",
"encryption",
"decryption"
],
"author": "Benjamin Toll <benjam72@yahoo.com> (http://www.benjamintoll.com)",
"license": "GPLv3",
"repository": {
"type": "git",
"url": "https://github.com/btoll/onf-gpg-wrapper"
},
"scripts": {
"clean": "rm -rf build coverage",
"compile": "babel -d build index.js",
"coverage": "GNUPGHOME=spec/.gnupg JASMINE_CONFIG_PATH=jasmine.json istanbul cover jasmine --captureExceptions",
"coveralls": "npm run coverage && cat ./coverage/lcov.info | ./node_modules/coveralls/bin/coveralls.js && rm -rf ./coverage",
"lint": "eslint spec src",
"specs": "GNUPGHOME=spec/.gnupg JASMINE_CONFIG_PATH=jasmine.json jasmine && npm run suites",
"suites": "dump_describes -t spec/onf-gpg-wrapper-spec.js -d spec -v --html && dump_describes -t spec/onf-gpg-wrapper-spec.js -d spec -v --md",
"test": "npm run clean && npm run lint && npm run compile && npm run specs"
},
"dependencies": {
"onf-logger": "0.1.0",
"ramda": "^0.22.1",
"yargs": "^3.29.0"
},
"devDependencies": {
"babel-core": "^6.18.2",
"babel-preset-es2015": "^6.18.0",
"coveralls": "^2.11.15",
"dump_describes": "git+https://github.com/btoll/dump_describes.git",
"eslint": "^3.11.1",
"istanbul": "^0.4.5",
"jasmine-core": "^2.5.2"
}
}