sodium-javascript/package.json
Christophe Diederichs f19e6c8172
Deprecate sodium-test (#68)
* deprecate sodium-test ahrness

* prune dependencies
2023-05-23 17:16:13 +02:00

53 lines
1.3 KiB
JSON

{
"name": "sodium-javascript",
"version": "0.8.0",
"description": "WIP - a pure javascript version of sodium-native",
"main": "index.js",
"dependencies": {
"blake2b": "^2.1.1",
"chacha20-universal": "^1.0.4",
"nanoassert": "^2.0.0",
"sha256-universal": "^1.1.0",
"sha512-universal": "^1.1.0",
"siphash24": "^1.0.1",
"xsalsa20": "^1.0.0"
},
"devDependencies": {
"brittle": "^3.2.1",
"browserify": "^16.5.1",
"standard": "^15.0.1"
},
"standard": {
"ignore": [
"/internal/**/*.js",
"/test/fixtures/*.js"
],
"rules": {
"camelcase": "off"
}
},
"browser": {
"crypto": false,
"worker_threads": false
},
"scripts": {
"pretest": "standard",
"test": "brittle test/*.js",
"test-browser": "browserify test.js | tape-run"
},
"repository": {
"type": "git",
"url": "git+https://github.com/sodium-friends/sodium-javascript.git"
},
"contributors": [
"Christophe Diederichs <chm-diederichs@hyperdivision.dk>",
"Emil Bay <github@tixz.dk> (http://bayes.dk)",
"Mathias Buus <mathiasbuus@gmail.com> (https://mafinto.sh)"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/sodium-friends/sodium-javascript/issues"
},
"homepage": "https://github.com/sodium-friends/sodium-javascript#readme"
}