-
Notifications
You must be signed in to change notification settings - Fork 11
/
package.json
75 lines (75 loc) · 1.74 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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
{
"name": "e3x",
"description": "End-to-End Encrypted eXchange",
"homepage": "https://github.com/telehash/e3x-js",
"version": "0.2.3",
"dependencies": {
"debug": "^2.2.0",
"subtle": "^0.1.2",
"ecc-jsbn": "git+https://github.com/rynomad/ecc-jsbn.git",
"hashname": "git+https://github.com/telehash/hashname.git",
"lob-enc": "git+https://github.com/telehash/lob-enc.git",
"node-forge": "0.6.x",
"tweetnacl": "^0.13.0"
},
"optionalDependencies": {
"ursa": "^0.8.1",
"ecc": "git+https://github.com/dazoe/ecc.git",
"ecc-qj": "git+https://github.com/rynomad/ecc.git",
"sodium": "1.0.x"
},
"devDependencies": {
"chai": "*",
"chext": "0.0.1",
"glob": "^5.0.13",
"gulp": "^3.9.0",
"gulp-jsdoc": "^0.1.4",
"gulp-mocha": "^2.1.2",
"gulp-watch": "^4.2.4",
"mocha": "*",
"plato": "^1.5.0"
},
"scripts": {
"test": "make test"
},
"browser": {
"ecc": "ecc-jsbn",
"ecc-qj": "ecc-jsbn",
"./ciphers/1a/export.js": "./ciphers/1a/export.browser.js",
"./ciphers/2a/export.js": "./ciphers/2a/export.browser.js",
"./ciphers/3a/export.js": "./ciphers/3a/export.browser.js"
},
"browserify": {
"transform": [
"browserify-shim"
]
},
"browserify-shim": {
"./forge.min.js": "forge"
},
"keywords": [
"e3x",
"e2e",
"end-to-end",
"encryption",
"crypto",
"p2p",
"mesh",
"browser"
],
"repository": {
"type": "git",
"url": "https://github.com/telehash/e3x-js.git"
},
"licenses": [
{
"type": "MIT",
"url": "https://github.com/telehash/e3x-js/raw/master/LICENSE"
}
],
"author": {
"name": "Jeremie Miller",
"email": "[email protected]",
"url": "http://jeremie.com/"
}
}