Made runnable via command line `staticrypt`.

pull/99/head
AaronCoplan 2017-12-15 16:37:02 -05:00
rodzic c2805b12d7
commit 9f7cfeb440
Nie znaleziono w bazie danych klucza dla tego podpisu
ID klucza GPG: 2D904C521DB00D86
2 zmienionych plików z 17 dodań i 12 usunięć

Wyświetl plik

@ -1,3 +1,5 @@
#!/usr/bin/env node
'use strict';
var CryptoJS = require("crypto-js");

Wyświetl plik

@ -1,14 +1,17 @@
{
"name": "staticrypt-cli",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"test": "node test.js"
},
"dependencies": {
"crypto-js": ">=3.1.9-1"
},
"author": "Aaron Coplan",
"license": "UNLICENSED"
"name": "staticrypt-cli",
"version": "1.0.0",
"description": "",
"main": "index.js",
"bin": {
"staticrypt": "./index.js"
},
"scripts": {
"test": "node test.js"
},
"dependencies": {
"crypto-js": ">=3.1.9-1"
},
"author": "Aaron Coplan",
"license": "UNLICENSED"
}