update cli/package.json

pull/101/head
Robin Moisson 2017-12-28 12:32:47 +01:00
rodzic 983e7fc0f2
commit cbd521b276
1 zmienionych plików z 36 dodań i 13 usunięć

Wyświetl plik

@ -1,7 +1,7 @@
{ {
"name": "staticrypt-cli", "name": "staticrypt",
"version": "1.0.0", "version": "1.0.0",
"description": "", "description": "Based on the [crypto-js](https://github.com/brix/crypto-js) library, StatiCrypt uses AES-256 to encrypt your input with your passphrase and put it in a HTML file with a password prompt that can decrypted in-browser (client side).",
"main": "index.js", "main": "index.js",
"bin": { "bin": {
"staticrypt": "./index.js" "staticrypt": "./index.js"
@ -10,6 +10,29 @@
"crypto-js": ">=3.1.9-1", "crypto-js": ">=3.1.9-1",
"yargs": ">=10.0.3" "yargs": ">=10.0.3"
}, },
"author": "Aaron Coplan", "author": "Robin Moisson (https://github.com/robinmoisson)",
"license": "MIT" "contributors": [
"Aaron Coplan (https://github.com/AaronCoplan)"
],
"license": "MIT",
"devDependencies": {},
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/robinmoisson/staticrypt.git"
},
"keywords": [
"static",
"html",
"password",
"protected",
"encrypted",
"encryption"
],
"bugs": {
"url": "https://github.com/robinmoisson/staticrypt/issues"
},
"homepage": "https://github.com/robinmoisson/staticrypt#readme"
} }