-
Notifications
You must be signed in to change notification settings - Fork 29
/
package.json
73 lines (73 loc) · 2.34 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
{
"name": "@mattrglobal/bbs-signatures",
"version": "2.0.0",
"author": "MATTR",
"license": "Apache-2.0",
"private": false,
"description": "An implementation of BBS+ signatures using rust compiled to wasm",
"homepage": "https://github.com/mattrglobal/bbs-signatures",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"repository": "https://github.com/mattrglobal/bbs-signatures",
"browser": {
"index.js": "lib/index.web.js"
},
"files": [
"lib/*"
],
"directories": {
"lib": "lib"
},
"engines": {
"node": ">=18"
},
"scripts": {
"install": "./scripts/install-dependencies.sh",
"uninstall": "rm -rf node_modules && yarn clean",
"clean": "rm -rf target && rm -rf dist",
"build": "./scripts/build-package.sh DEBUG",
"build:release": "./scripts/build-package.sh RELEASE",
"test": "yarn test:browser && yarn test:node && yarn test:wasm",
"test:browser": "./scripts/test-browser.sh",
"test:node": "BBS_SIGNATURES_MODE=\"NODE_JS_MODULE\" yarn jest",
"test:wasm": "BBS_SIGNATURES_MODE=\"WASM\" yarn jest",
"benchmark:node": "BBS_SIGNATURES_MODE=\"NODE_JS_MODULE\" ts-node ./bench/index.ts",
"benchmark:wasm": "BBS_SIGNATURES_MODE=\"WASM\" ts-node ./bench/index.ts",
"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.7.1",
"@commitlint/config-conventional": "17.7.0",
"@stablelib/base64": "1.0.0",
"@stablelib/benchmark": "1.0.0",
"@types/jest": "28.1.1",
"@types/node": "12.7.2",
"@wasm-tool/wasm-pack-plugin": "1.7.0",
"buffer": "6.0.3",
"conventional-changelog": "3.1.25",
"conventional-changelog-cli": "2.2.2",
"husky": "8.0.0",
"jest": "28.1.1",
"prettier": "2.0.4",
"pretty-quick": "2.0.1",
"process": "0.11.10",
"rollup": "4.22.4",
"text-encoding": "0.7.0",
"ts-jest": "28.0.5",
"ts-node": "8.4.1",
"typescript": "4.3.5"
},
"resolutions": {
"lodash": "4.17.21"
},
"optionalDependencies": {
"@mattrglobal/node-bbs-signatures": "0.20.0"
},
"dependencies": {
"@stablelib/random": "1.0.0"
}
}