staticrypt/package.json

44 wiersze
1.1 KiB
JSON
Czysty Zwykły widok Historia

2017-12-14 21:47:19 +00:00
{
2017-12-28 11:32:47 +00:00
"name": "staticrypt",
2022-11-20 18:37:53 +00:00
"version": "2.2.1",
2017-12-28 11:32:47 +00:00
"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",
"files": [
"/cli",
"/lib"
],
2017-12-28 11:32:47 +00:00
"bin": {
"staticrypt": "./cli/index.js"
2017-12-28 11:32:47 +00:00
},
"dependencies": {
2022-11-20 18:19:40 +00:00
"crypto-js": "3.1.9-1",
2017-12-28 11:32:47 +00:00
"yargs": ">=10.0.3"
},
"author": "Robin Moisson (https://github.com/robinmoisson)",
"contributors": [
"Aaron Coplan (https://github.com/AaronCoplan)"
],
"license": "MIT",
"devDependencies": {},
"scripts": {
"build": "bash ./scripts/build.sh",
2017-12-28 11:32:47 +00:00
"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"
2017-12-14 21:47:19 +00:00
}