-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
46 lines (46 loc) · 1.14 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
{
"name": "lite-lamport",
"version": "1.1.0",
"description": "Simple Lamport one-time signature library",
"main": "index.js",
"repository": {
"type": "git",
"url": "git://github.com/Capitalisk/lite-lamport.git"
},
"scripts": {
"build": "gulp browserify; gulp minify",
"test": "mocha --reporter spec --timeout 3000 --slow 3000"
},
"keywords": [
"lamport",
"signature",
"ots"
],
"author": "Jonathan Gros-Dubois",
"license": "MIT",
"devDependencies": {
"@babel/core": "^7.12.10",
"@babel/preset-env": "^7.12.11",
"babel-plugin-minify-dead-code-elimination": "^0.5.0",
"browserify": "^16.2.3",
"es-check": "^5.1.4",
"gulp": "^4.0.0",
"gulp-babel": "^8.0.0",
"gulp-cli": "^2.0.1",
"gulp-convert-newline": "^0.0.3",
"gulp-insert": "^0.5.0",
"gulp-rename": "^1.4.0",
"gulp-uglify": "^3.0.1",
"mocha": "^8.2.1",
"uglify-es": "^3.3.9",
"vinyl-source-stream": "^2.0.0"
},
"dependencies": {
"hash.js": "^1.1.7",
"randombytes": "^2.1.0"
},
"browser": {
"./sha256": "./sha256-browser.js",
"./hmac-sha256": "./hmac-sha256-browser.js"
}
}