-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
37 lines (37 loc) · 896 Bytes
/
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
{
"name": "@kevincharm/blstoise",
"version": "1.0.1",
"description": "toy bls12-381 implementation",
"main": "dist/src/index.js",
"files": [
"dist/**/*",
"!dist/test"
],
"engines": {
"node": ">=18"
},
"packageManager": "yarn@1.22.22",
"scripts": {
"prepare": "yarn tsc",
"test": "NODE_OPTIONS=--experimental-global-webcrypto yarn mocha -r ts-node/register test/**/*.spec.ts"
},
"author": "Kevin Charm <kevin@kevincharm.com>",
"repository": {
"type": "git",
"url": "git+https://github.com/kevincharm/blstoise.git"
},
"license": "MIT",
"devDependencies": {
"@types/chai": "^4.3.16",
"@types/mocha": "^10.0.7",
"@types/node": "^18",
"chai": "^4",
"mocha": "^10.6.0",
"prettier": "^3.3.2",
"ts-node": "^10.9.2",
"typescript": "^5.5.3"
},
"dependencies": {
"@kevincharm/sharmander256": "^1.0.0"
}
}