-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
33 lines (33 loc) · 916 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
{
"name": "@thehubbleproject/bls",
"version": "0.5.1",
"description": "",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"build": "rm -rf dist/ && tsc",
"test": "mocha -r ts-node/register test/**/*.test.ts",
"lint": "prettier --check .",
"prettier": "prettier --write .",
"preversion": "npm i && npm run prettier && npm test",
"version": "npm run build && git add -A dist"
},
"homepage": "https://github.com/thehubbleproject/hubble-bls",
"repository": "https://github.com/thehubbleproject/hubble-bls",
"author": "",
"license": "MIT",
"dependencies": {
"ethers": "^5.5.3",
"mcl-wasm": "^1.0.0"
},
"devDependencies": {
"@types/chai": "^4.3.0",
"@types/mocha": "^9.0.0",
"@types/node": "^16.11.7",
"chai": "^4.3.4",
"mocha": "^9.1.4",
"prettier": "^2.5.1",
"ts-node": "^10.4.0",
"typescript": "^4.5.4"
}
}