add browser test target

This commit is contained in:
Julian Gruber 2017-03-20 10:31:00 +01:00
parent 709001fd4e
commit b16f175389
2 changed files with 9 additions and 1 deletions

View File

@ -18,3 +18,5 @@ var plainText = new Buffer(cipher.length - sodium.crypto_secretbox_MACBYTES)
sodium.crypto_secretbox_open_easy(plainText, cipher, nonce, key)
console.log('Plaintext:', plainText.toString())
if (typeof window !== 'undefined') window.close()

View File

@ -6,7 +6,13 @@
"dependencies": {
"blakejs": "^1.0.1"
},
"devDependencies": {},
"devDependencies": {
"browser-run": "^4.0.2",
"browserify": "^14.1.0"
},
"scripts": {
"browser": "browserify example.js | browser-run"
},
"repository": {
"type": "git",
"url": "https://github.com/mafintosh/sodium-javascript.git"