-
Notifications
You must be signed in to change notification settings - Fork 24
/
package.json
52 lines (52 loc) · 1.31 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
{
"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 <[email protected]>",
"Emil Bay <[email protected]> (http://bayes.dk)",
"Mathias Buus <[email protected]> (https://mafinto.sh)"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/sodium-friends/sodium-javascript/issues"
},
"homepage": "https://github.com/sodium-friends/sodium-javascript#readme"
}