forked from TeleportDAO/bls12-381
-
Notifications
You must be signed in to change notification settings - Fork 25
Expand file tree
/
Copy pathpackage.json
More file actions
41 lines (41 loc) · 1.09 KB
/
package.json
File metadata and controls
41 lines (41 loc) · 1.09 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
{
"name": "@teleportdao/bls12-381",
"version": "0.1.0",
"description": "an implementation of bls12-381 in typescript",
"main": "dist/index.js",
"module": "dist/esm/index.js",
"types": "dist/index.d.ts",
"scripts": {
"build": "tsc && tsc -p tsconfig.esm.json",
"test": "mocha -r ts-node/register test/*.test.ts",
"prepare": "husky install"
},
"repository": {
"type": "git",
"url": "git+https://github.com/TeleportDAO/bls12-381.git"
},
"author": "",
"license": "MIT",
"bugs": {
"url": "https://github.com/TeleportDAO/bls12-381/issues"
},
"homepage": "https://github.com/TeleportDAO/bls12-381#readme",
"dependencies": {
"@ethersproject/bignumber": "^5.7.0",
"commitlint": "^17.6.3"
},
"devDependencies": {
"@commitlint/cli": "^17.6.3",
"@commitlint/config-conventional": "^17.6.3",
"@types/chai": "^4.3.4",
"@types/mocha": "^10.0.1",
"@types/node": "^18.15.11",
"chai": "^4.3.7",
"husky": "^8.0.3",
"lerna": "^6.6.2",
"mocha": "^10.2.0",
"nyc": "^15.1.0",
"ts-node": "^10.9.1",
"typescript": "^5.0.4"
}
}