-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
47 lines (47 loc) · 1.38 KB
/
package.json
File metadata and controls
47 lines (47 loc) · 1.38 KB
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
{
"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 --enable-source-maps dist/main.js",
"lint": "yarn run eslint ."
},
"author": "Kannan Goundan <kannan@cakoose.com>",
"license": "CC0-1.0",
"dependencies": {
"argparse": "2.0.1",
"benchmark": "2.1.4",
"blake2": "5.0.1",
"blake2.wasm": "0.1.0",
"ed25519-supercop": "2.0.1",
"hash-wasm": "4.12.0",
"js-sha3": "0.9.3",
"jssha": "3.3.1",
"keccak": "3.0.4",
"semver": "7.7.4",
"sha3": "2.1.4",
"sodium-native": "5.1.0"
},
"devDependencies": {
"@eslint/js": "10.0.1",
"@stylistic/eslint-plugin": "5.10.0",
"@types/argparse": "2.0.17",
"@types/benchmark": "2.1.5",
"@types/ed25519": "0.0.3",
"@types/node": "24.12.0",
"@types/semver": "7.7.1",
"eslint": "10.0.3",
"globals": "17.4.0",
"microtime": "3.1.1",
"ts-node": "10.9.2",
"typescript": "5.9.3",
"typescript-eslint": "8.57.1"
},
"packageManager": "yarn@4.13.0",
"volta": {
"node": "24.13.0",
"yarn": "1.22.22"
}
}