-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
47 lines (47 loc) · 1.25 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
{
"name": "@crate-crypto/crypto-4844",
"version": "0.2.0",
"description": "Cryptography needed for EIP4844",
"type": "module",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"/dist"
],
"scripts": {
"build": "tsc -p .",
"test": "mocha --timeout 5000",
"benchmarks": "npm run benchmark:files 'benchmarks/*.test.ts'",
"benchmark:files": "NODE_OPTIONS='--max-old-space-size=4096 --loader=ts-node/esm' benchmark --config .benchrc.yaml"
},
"publishConfig": {
"access": "public"
},
"devDependencies": {
"@dapplion/benchmark": "^0.2.4",
"@types/chai": "^4.3.4",
"@types/mocha": "^10.0.1",
"c-kzg": "^2.0.0",
"chai": "^4.3.7",
"mocha": "^10.2.0",
"ts-node": "^10.9.1",
"typescript": "^4.9.5"
},
"dependencies": {
"@noble/curves": "^0.7.3",
"montgomery": "^0.2.1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/crate-crypto/js-proto-danksharding-crypto.git"
},
"keywords": [
"cryptography"
],
"author": "Kevaundray Wedderburn",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/crate-crypto/js-proto-danksharding-crypto/issues"
},
"homepage": "https://github.com/crate-crypto/js-proto-danksharding-crypto#readme"
}