sodium-javascript/package.json

53 lines
1.3 KiB
JSON
Raw Normal View History

2017-01-24 10:41:06 +00:00
{
"name": "sodium-javascript",
2022-01-14 17:43:21 +00:00
"version": "0.8.0",
2017-01-24 10:41:06 +00:00
"description": "WIP - a pure javascript version of sodium-native",
"main": "index.js",
2017-02-12 02:37:17 +00:00
"dependencies": {
2017-06-11 18:23:06 +00:00
"blake2b": "^2.1.1",
"chacha20-universal": "^1.0.4",
2020-06-24 12:49:38 +00:00
"nanoassert": "^2.0.0",
"sha256-universal": "^1.1.0",
"sha512-universal": "^1.1.0",
"siphash24": "^1.0.1",
"xsalsa20": "^1.0.0"
2017-02-12 02:37:17 +00:00
},
2017-04-11 20:19:34 +00:00
"devDependencies": {
"browser-run": "^4.0.2",
"browserify": "^14.1.0",
"brittle": "^3.2.1",
2020-06-24 12:49:38 +00:00
"browserify": "^16.5.1",
2023-05-23 15:44:24 +00:00
"sodium-native": "^3.4.1",
"standard": "^15.0.1"
2017-04-11 20:19:34 +00:00
},
2020-06-24 12:08:55 +00:00
"standard": {
"ignore": [
"/internal/**/*.js",
"/test/fixtures/*.js"
2023-05-23 16:06:05 +00:00
]
2017-11-19 12:16:13 +00:00
},
"browser": {
"crypto": false,
"worker_threads": false
},
2017-06-11 18:23:06 +00:00
"scripts": {
2020-06-24 12:49:38 +00:00
"pretest": "standard",
"test": "brittle test/*.js",
"test-browser": "browserify test.js | tape-run"
2017-06-12 08:05:49 +00:00
},
2017-01-24 10:41:06 +00:00
"repository": {
"type": "git",
2020-06-24 13:02:49 +00:00
"url": "git+https://github.com/sodium-friends/sodium-javascript.git"
2017-01-24 10:41:06 +00:00
},
2020-06-24 13:02:49 +00:00
"contributors": [
"Christophe Diederichs <chm-diederichs@hyperdivision.dk>",
"Emil Bay <github@tixz.dk> (http://bayes.dk)",
"Mathias Buus <mathiasbuus@gmail.com> (https://mafinto.sh)"
],
2017-01-24 10:41:06 +00:00
"license": "MIT",
"bugs": {
2020-06-24 13:02:49 +00:00
"url": "https://github.com/sodium-friends/sodium-javascript/issues"
2017-01-24 10:41:06 +00:00
},
2020-06-24 13:02:49 +00:00
"homepage": "https://github.com/sodium-friends/sodium-javascript#readme"
2017-01-24 10:41:06 +00:00
}