secret-box
Version:
Encrypt and decrypt secrets.
41 lines (40 loc) • 875 B
JSON
{
"name": "secret-box",
"description": "Encrypt and decrypt secrets.",
"version": "0.1.1",
"author": "JP Richardson <jprichardson@gmail.com>",
"bugs": {
"url": "https://github.com/jprichardson/secret-box/issues"
},
"devDependencies": {
"standard": "*",
"tap-spec": "^4.0.2",
"tape": "^4.0.0"
},
"homepage": "https://github.com/jprichardson/secret-box",
"engines": {
"node": ">= 4.0.0"
},
"keywords": [
"aes",
"decryption",
"encryption",
"scrypt",
"secret"
],
"license": "MIT",
"main": "index.js",
"repository": {
"type": "git",
"url": "https://github.com/jprichardson/secret-box.git"
},
"scripts": {
"lint": "standard",
"unit": "tape test/*.js | tap-spec",
"test": "npm run lint && npm run unit"
},
"dependencies": {
"scryptsy": "^2.0.0",
"varstruct": "^5.2.0"
}
}