@mainsail/crypto-hash-bcrypto 0.0.1-alpha.13 → 0.0.1-alpha.14

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (1) hide show
  1. package/package.json +7 -6
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@mainsail/crypto-hash-bcrypto",
3
- "version": "0.0.1-alpha.13",
3
+ "version": "0.0.1-alpha.14",
4
4
  "description": "Hashing powered by bcrypto for the Mainsail blockchain",
5
5
  "license": "GPL-3.0-only",
6
6
  "contributors": [],
@@ -12,9 +12,9 @@
12
12
  ],
13
13
  "dependencies": {
14
14
  "bcrypto": "5.5.2",
15
- "@mainsail/kernel": "0.0.1-alpha.13",
16
- "@mainsail/contracts": "0.0.1-alpha.13",
17
- "@mainsail/container": "0.0.1-alpha.13"
15
+ "@mainsail/contracts": "0.0.1-alpha.14",
16
+ "@mainsail/kernel": "0.0.1-alpha.14",
17
+ "@mainsail/container": "0.0.1-alpha.14"
18
18
  },
19
19
  "devDependencies": {
20
20
  "uvu": "^0.5.6"
@@ -27,9 +27,10 @@
27
27
  "build:watch": "pnpm run clean && tsc -w",
28
28
  "clean": "del distribution",
29
29
  "release": "pnpm publish --access public",
30
- "test": "uvu -r tsm source .test.ts",
30
+ "test": "pnpm run uvu source .test.ts",
31
31
  "test:coverage": "c8 pnpm run test",
32
32
  "test:coverage:html": "c8 -r html --all pnpm run test",
33
- "test:file": "uvu -r tsm source"
33
+ "test:file": "pnpm run uvu source",
34
+ "uvu": "tsx --tsconfig ../../tsconfig.test.json ./node_modules/uvu/bin.js"
34
35
  }
35
36
  }