forked from meganz/jodid25519
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
69 lines (69 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
{
"name": "jodid25519",
"version": "0.7.1",
"description": "jodid25519 - Curve 25519-based cryptography",
"main": "index.js",
"directories": {
"src": "src",
"test": "test",
"doc": "doc"
},
"scripts": {
"prepublish": "make jodid25519.js",
"test": "make test test-shared",
"test-full": "make test-full",
"test-timing": "make test-timing",
"api-doc": "make api-doc",
"build-shared": "make build-shared",
"build-static": "make build-static"
},
"homepage": "https://github.com/meganz/jodid25519",
"repository": {
"type": "git",
"url": "https://github.com/meganz/jodid25519.git"
},
"bugs": {
"url": "https://github.com/meganz/jodid25519/issues"
},
"keywords": [
"Curve25519",
"Ed25519",
"ECDH",
"EdDSA",
"ECDSA",
"encryption",
"signing"
],
"author": "Michele Bini, Ron Garret, Guy K. Kloss",
"license": "MIT",
"readmeFilename": "README.md",
"dependencies": {
"jsbn": "*",
"asmcrypto.js": "vibornoff/asmcrypto.js"
},
"devDependencies": {
"almond": "~0.2.9",
"karma-script-launcher": "~0.1.0",
"karma-chrome-launcher": "~0.1.7",
"karma-firefox-launcher": "~0.1.3",
"karma-phantomjs-launcher": "~0.1.4",
"karma-html2js-preprocessor": "~0.1.0",
"karma-jasmine": "~0.3.2",
"requirejs": "~2.1.15",
"karma-requirejs": "~0.2.2",
"karma": "~0.12.18",
"mocha": "~2.0.1",
"karma-mocha": "~0.1.10",
"karma-chai": "0.1.0",
"karma-chai-plugins": "0.2.4",
"karma-sinon": "~1.0.4",
"karma-junit-reporter": "~0.2",
"karma-coverage": "~0.2.7",
"istanbul": "~0.3.5",
"ibrik": "~2.0.0",
"dateformat": "~1.0.7-1.2.3",
"sinon": "~1.10.3",
"jsdoc": "<=3.3.0",
"uglify-js": "~2.4.16"
}
}