-
Notifications
You must be signed in to change notification settings - Fork 10
/
package.json
89 lines (89 loc) · 2.61 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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
{
"name": "@mattrglobal/bls12381-key-pair",
"version": "2.0.0",
"description": "A library for using BLS 12-381 key pairs with BBS+ signatures",
"homepage": "https://github.com/mattrglobal/bls12381-key-pair",
"author": {
"name": "Mattr",
"email": "[email protected]",
"url": "https://mattr.global"
},
"contributors": [
"Tobias Looker"
],
"repository": {
"type": "git",
"url": "git+https://github.com/mattrglobal/bls12381-key-pair"
},
"bugs": {
"url": "https://github.com/mattrglobal/bls12381-key-pair/issues",
"email": "[email protected]"
},
"main": "lib/index.js",
"typings": "lib/index.d.ts",
"directories": {
"lib": "lib"
},
"files": [
"lib"
],
"private": false,
"engines": {
"node": ">=18.0.0"
},
"devEngines": {
"node": "18.x || 20.x || 22.x"
},
"scripts": {
"test:node": "BBS_SIGNATURES_MODE=\"NODE_JS_MODULE\" jest",
"test:wasm": "BBS_SIGNATURES_MODE=\"WASM\" jest",
"test": "yarn test:node && yarn test:wasm",
"build": "tsc --pretty",
"clean": "rm -rf lib/",
"format": "prettier --write \"**/*.ts\" \"**/*.md\" \"!**/lib/**\"",
"lint": "eslint . --ext .ts --color --format=table",
"lint:fix": "yarn lint --fix",
"pre-pr": "yarn clean && yarn format && yarn lint:fix && yarn build && yarn test",
"publish:unstable": "./scripts/publish_unstable.sh",
"publish:release": "./scripts/publish.sh",
"version": "conventional-changelog -p angular -i CHANGELOG.md -s && git add CHANGELOG.md",
"version:release": "yarn version --minor --message \"chore(release): publish\""
},
"devDependencies": {
"@commitlint/cli": "19.6.0",
"@commitlint/config-conventional": "17.7.0",
"@types/jest": "29.5.13",
"@types/node": "18.18.0",
"@typescript-eslint/eslint-plugin": "2.28.0",
"@typescript-eslint/parser": "2.28.0",
"conventional-changelog": "5.1.0",
"conventional-changelog-cli": "4.1.0",
"eslint": "7.32.0",
"eslint-config-prettier": "^6.10.1",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^3.1.3",
"husky": "4.3.8",
"jest": "29.7.0",
"prettier": "1.19.1",
"pretty-quick": "4.0.0",
"ts-jest": "29.2.5",
"ts-node": "8.4.1",
"typescript": "4.9.5"
},
"dependencies": {
"@mattrglobal/bbs-signatures": "2.0.0",
"bs58": "6.0.0",
"rfc4648": "1.5.3"
},
"husky": {
"hooks": {
"commit-msg": "[[ -n $HUSKY_BYPASS ]] || commitlint -E HUSKY_GIT_PARAMS",
"pre-commit": "[[ -n $HUSKY_BYPASS ]] || pretty-quick --staged"
}
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
}
}