-
Notifications
You must be signed in to change notification settings - Fork 9
/
package.json
66 lines (66 loc) · 2.07 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
{
"name": "@docknetwork/crypto-wasm-ts",
"version": "0.66.0",
"description": "Typescript abstractions over Dock's Rust crypto library's WASM wrapper",
"homepage": "https://github.com/docknetwork/crypto-wasm-ts",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"engines": {
"node": ">=18.0.0"
},
"scripts": {
"build": "tsc",
"clean": "rm -rf lib/",
"jest": "NODE_OPTIONS='--experimental-vm-modules' jest",
"prepare": "husky install",
"pretty": "prettier --config .prettierrc 'src/**/*.ts' --write",
"test": "yarn jest",
"buildAndPublish": "yarn clean && yarn build && yarn publish",
"test-bbs": "TEST_SIGNATURE_SCHEME=BBS yarn jest",
"test-bbs+": "TEST_SIGNATURE_SCHEME=BBS+ yarn jest",
"test-ps": "TEST_SIGNATURE_SCHEME=PS yarn jest",
"test-bbdt16": "TEST_SIGNATURE_SCHEME=BBDT16 yarn jest",
"test-all": "TEST_SIGNATURE_SCHEME=BBS yarn jest; TEST_SIGNATURE_SCHEME=BBS+ yarn jest; TEST_SIGNATURE_SCHEME=PS yarn jest; TEST_SIGNATURE_SCHEME=BBDT16 yarn jest"
},
"license": "Apache-2.0",
"private": false,
"files": [
"lib/*"
],
"directories": {
"lib": "lib"
},
"dependencies": {
"@types/flat": "^5.0.2",
"@types/lodash": "^4.14.195",
"bs58": "5.0.0",
"crypto-wasm-new": "npm:@docknetwork/crypto-wasm@0.33.0",
"flat": "^5.0.2",
"json-pointer": "^0.6.2",
"json-stringify-deterministic": "^1.0.11",
"lodash": "^4.17.21",
"lzutf8": "0.6.3",
"semver": "^7.6.0"
},
"devDependencies": {
"@types/jest": "^29.1.0",
"@types/jsonld": "^1.5.7",
"@types/node": "^16.18.34",
"@typescript-eslint/eslint-plugin": "^5.59.9",
"@typescript-eslint/parser": "^5.59.9",
"commander": "^10.0.1",
"eslint": "^8.42.0",
"eslint-config-prettier": "^8.8.0",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-unused-imports": "^3.1.0",
"husky": "^7.0.4",
"jest": "^29.1.0",
"jsonld": "6.0.0",
"jsonschema": "1.4.1",
"prettier": "2.8.8",
"r1csfile": "^0.0.41",
"ts-jest": "^29.1.0",
"ts-node": "^10.9.1",
"typescript": "5.3.3"
}
}