This repository has been archived by the owner on Oct 15, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 41
/
Copy pathpackage.json
88 lines (88 loc) · 3.05 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
{
"name": "@mattrglobal/jsonld-signatures-bbs",
"version": "1.2.0",
"description": "A JSON-LD linked data proof suite for creating and verifying BBS+ signatures and proofs",
"homepage": "https://github.com/mattrglobal/jsonld-signatures-bbs",
"author": {
"name": "Mattr",
"email": "[email protected]",
"url": "https://mattr.global"
},
"contributors": [
"Tobias Looker",
"Mike Lodder"
],
"repository": {
"type": "git",
"url": "git+https://github.com/mattrglobal/jsonld-signatures-bbs.git"
},
"bugs": {
"url": "https://github.com/mattrglobal/jsonld-signatures-bbs/issues",
"email": "[email protected]"
},
"main": "lib/index.js",
"typings": "lib/index.d.ts",
"directories": {
"lib": "lib"
},
"files": [
"lib"
],
"engines": {
"node": ">=14.0.0"
},
"scripts": {
"generate-test-vectors": "ts-node --project tsconfig.json ./tooling/test-vectors/index.ts",
"test:node": "BBS_SIGNATURES_MODE=\"NODE_JS_MODULE\" jest",
"test:wasm": "BBS_SIGNATURES_MODE=\"WASM\" jest",
"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",
"license:check": "license-checker --excludePrivatePackages --excludeScopes '@mattrglobal' --excludePackages '[email protected];[email protected]' --onlyAllow 'MIT;BSD;Apache-2.0;Apache 2.0;Apache License, Version 2.0;Apache*;Unlicense;ISC;Artistic-2.0;WTFPL;CC-BY-3.0;CC-BY-4.0;CC0-1.0;Python-2.0;MPL-2.0;' --summary",
"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 --message \"chore(release): publish\"",
"prepare": "husky install"
},
"devDependencies": {
"@commitlint/cli": "17.0.2",
"@commitlint/config-conventional": "17.0.2",
"@types/bs58": "4.0.1",
"@types/jest": "28.1.1",
"@types/node": "12.7.2",
"@typescript-eslint/eslint-plugin": "2.28.0",
"@typescript-eslint/parser": "2.28.0",
"conventional-changelog": "3.1.25",
"conventional-changelog-cli": "2.2.2",
"eslint": "6.8.0",
"eslint-config-prettier": "^6.10.1",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^3.1.3",
"husky": "8.0.0",
"jest": "28.1.1",
"license-checker-commit": "25.0.2",
"prettier": "2.6.2",
"pretty-quick": "3.1.3",
"require-all": "3.0.0",
"ts-jest": "28.0.1",
"ts-node": "8.4.1",
"typescript": "4.3.3"
},
"dependencies": {
"@mattrglobal/bbs-signatures": "1.2.0",
"@mattrglobal/bls12381-key-pair": "1.1.0",
"@stablelib/random": "1.0.0",
"bs58": "4.0.1",
"jsonld": "4.0.1",
"jsonld-signatures": "7.0.0"
},
"resolutions": {
"@commitlint/cli/**/ansi-regex": "5.0.1",
"jsonld-signatures/**/node-forge": "1.3.0",
"lodash": "4.17.21"
}
}