@movebridge/testing 0.2.0 → 0.2.1

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 (2) hide show
  1. package/package.json +57 -57
  2. package/LICENSE +0 -0
package/package.json CHANGED
@@ -1,60 +1,60 @@
1
1
  {
2
- "name": "@movebridge/testing",
3
- "version": "0.2.0",
4
- "description": "Testing utilities for MoveBridge SDK - mocks, validators, fakers, and test harness",
5
- "main": "./dist/index.js",
6
- "module": "./dist/index.mjs",
7
- "types": "./dist/index.d.ts",
8
- "exports": {
9
- ".": {
10
- "types": "./dist/index.d.ts",
11
- "import": "./dist/index.mjs",
12
- "require": "./dist/index.js"
2
+ "name": "@movebridge/testing",
3
+ "version": "0.2.1",
4
+ "description": "Testing utilities for MoveBridge SDK - mocks, validators, fakers, and test harness",
5
+ "main": "./dist/index.js",
6
+ "module": "./dist/index.mjs",
7
+ "types": "./dist/index.d.ts",
8
+ "exports": {
9
+ ".": {
10
+ "types": "./dist/index.d.ts",
11
+ "import": "./dist/index.mjs",
12
+ "require": "./dist/index.js"
13
+ }
14
+ },
15
+ "files": [
16
+ "dist"
17
+ ],
18
+ "scripts": {
19
+ "build": "tsup src/index.ts --format cjs,esm --dts --clean",
20
+ "dev": "tsup src/index.ts --format cjs,esm --dts --watch",
21
+ "clean": "rm -rf dist",
22
+ "typecheck": "tsc --noEmit",
23
+ "test": "vitest run",
24
+ "test:watch": "vitest",
25
+ "test:coverage": "vitest run --coverage",
26
+ "test:properties": "vitest run --testNamePattern='Property'"
27
+ },
28
+ "dependencies": {
29
+ "@movebridge/core": "workspace:*",
30
+ "superstruct": "^1.0.3"
31
+ },
32
+ "devDependencies": {
33
+ "fast-check": "^3.14.0",
34
+ "tsup": "^8.0.1",
35
+ "typescript": "^5.3.2"
36
+ },
37
+ "peerDependencies": {
38
+ "@movebridge/core": ">=0.1.0"
39
+ },
40
+ "keywords": [
41
+ "movement",
42
+ "aptos",
43
+ "blockchain",
44
+ "testing",
45
+ "mock",
46
+ "validator",
47
+ "sdk"
48
+ ],
49
+ "author": "Aqila Rifti",
50
+ "license": "MIT",
51
+ "repository": {
52
+ "type": "git",
53
+ "url": "https://github.com/AqilaRifti/MoveBridge",
54
+ "directory": "packages/testing"
55
+ },
56
+ "homepage": "https://github.com/AqilaRifti/MoveBridge#readme",
57
+ "bugs": {
58
+ "url": "https://github.com/AqilaRifti/MoveBridge/issues"
13
59
  }
14
- },
15
- "files": [
16
- "dist"
17
- ],
18
- "dependencies": {
19
- "superstruct": "^1.0.3",
20
- "@movebridge/core": "0.2.0"
21
- },
22
- "devDependencies": {
23
- "fast-check": "^3.14.0",
24
- "tsup": "^8.0.1",
25
- "typescript": "^5.3.2"
26
- },
27
- "peerDependencies": {
28
- "@movebridge/core": ">=0.1.0"
29
- },
30
- "keywords": [
31
- "movement",
32
- "aptos",
33
- "blockchain",
34
- "testing",
35
- "mock",
36
- "validator",
37
- "sdk"
38
- ],
39
- "author": "Aqila Rifti",
40
- "license": "MIT",
41
- "repository": {
42
- "type": "git",
43
- "url": "https://github.com/AqilaRifti/MoveBridge",
44
- "directory": "packages/testing"
45
- },
46
- "homepage": "https://github.com/AqilaRifti/MoveBridge#readme",
47
- "bugs": {
48
- "url": "https://github.com/AqilaRifti/MoveBridge/issues"
49
- },
50
- "scripts": {
51
- "build": "tsup src/index.ts --format cjs,esm --dts --clean",
52
- "dev": "tsup src/index.ts --format cjs,esm --dts --watch",
53
- "clean": "rm -rf dist",
54
- "typecheck": "tsc --noEmit",
55
- "test": "vitest run",
56
- "test:watch": "vitest",
57
- "test:coverage": "vitest run --coverage",
58
- "test:properties": "vitest run --testNamePattern='Property'"
59
- }
60
60
  }
package/LICENSE DELETED
File without changes