-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
46 lines (46 loc) · 1.38 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": "crypto-benchmarks",
"version": "0.0.1",
"description": "Measures the execution time of some crypto algorithm implementations.",
"scripts": {
"watch": "./node_modules/.bin/tsc --watch",
"build": "./node_modules/.bin/tsc",
"bench": "node dist/main.js",
"lint": "yarn run eslint ."
},
"author": "Kannan Goundan <[email protected]>",
"license": "CC0-1.0",
"dependencies": {
"argparse": "2.0.1",
"benchmark": "2.1.4",
"blake2": "5.0.0",
"blake2.wasm": "0.1.0",
"ed25519-supercop": "2.0.1",
"hash-wasm": "^4.11.0",
"js-sha3": "0.9.3",
"jssha": "3.3.1",
"keccak": "3.0.4",
"semver": "7.5.4",
"sha3": "2.1.4",
"sodium-native": "4.0.6"
},
"devDependencies": {
"@types/argparse": "2.0.14",
"@types/benchmark": "2.1.5",
"@types/ed25519": "0.0.3",
"@types/node": "20.11.16",
"@types/semver": "7.5.6",
"@typescript-eslint/eslint-plugin": "6.20.0",
"@typescript-eslint/parser": "6.20.0",
"eslint": "8.56.0",
"microtime": "^3.1.1",
"source-map-support": "0.5.21",
"ts-node": "10.9.2",
"typescript": "5.3.3"
},
"resolutions": {
"@c4312/blake3-internal": "3.0.0",
"node-gyp-build": "4.8.0"
},
"packageManager": "[email protected]"
}