-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
73 lines (73 loc) · 2.67 KB
/
Copy pathpackage.json
File metadata and controls
73 lines (73 loc) · 2.67 KB
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
{
"type": "module",
"name": "@btc-vision/unit-test-framework",
"version": "1.0.0",
"description": "OP_NET Unit Test Framework. This package contains all the necessary tools to run unit tests for OP_NET smart contracts.",
"main": "build/index.js",
"scripts": {
"build": "gulp",
"build:test-contract": "node scripts/buildTestContracts.js",
"prepublish": "npm run build",
"test": "npm-run-all build:test-contract test:*",
"test:blockchain": "tsx test/e2e/imports/Blockchain.test.ts",
"test:dos": "tsx test/e2e/imports/Dos.test.ts",
"test:call-depth": "tsx test/e2e/limits/CallDepth.test.ts",
"test:gas": "tsx test/e2e/gas/Gas.test.ts",
"test:memory": "tsx test/e2e/limits/Memory.test.ts",
"test:sha256": "tsx test/e2e/imports/Hashes.test.ts",
"test:signature": "tsx test/e2e/imports/MLDSA.test.ts",
"test:storage": "tsx test/e2e/imports/Storage.test.ts",
"test:update-from-address": "tsx test/e2e/imports/UpdateFromAddress.test.ts",
"test:ecdsa": "tsx test/e2e/imports/ECDSA.test.ts"
},
"repository": {
"type": "git",
"url": "https://github.com/btc-vision/unit-test-framework"
},
"author": "OP_NET",
"license": "Apache-2.0",
"types": "build/index.d.ts",
"exports": {
".": {
"import": "./build/index.js",
"require": "./build/index.js",
"types": "./build/index.d.ts"
}
},
"resolutions": {
"@btc-vision/btc-runtime": "1.10.10",
"@btc-vision/transaction": "1.7.28",
"opnet": "1.7.31"
},
"dependencies": {
"@btc-vision/as-loader": "^0.0.0",
"@btc-vision/assemblyscript": "^0.29.3",
"@btc-vision/bip32": "^7.1.2",
"@btc-vision/bitcoin": "^7.0.0",
"@btc-vision/ecpair": "^4.0.5",
"@btc-vision/logger": "^1.0.8",
"@btc-vision/op-vm": "^1.0.0",
"@btc-vision/transaction": "^1.8.2",
"gulp-logger-new": "^1.0.1",
"npm-run-all": "^4.1.5",
"opnet": "^1.8.6",
"typescript": "^5.9.3"
},
"devDependencies": {
"@btc-vision/as-bignum": "^1.0.0",
"@btc-vision/btc-runtime": "^1.11.0",
"@btc-vision/opnet-transform": "^1.2.2",
"@eslint/js": "^10.0.1",
"@types/node": "^25.5.0",
"@typescript-eslint/eslint-plugin": "^8.57.1",
"@typescript-eslint/parser": "^8.57.1",
"eslint": "^10.0.3",
"gulp": "^5.0.1",
"gulp-cached": "^1.1.1",
"gulp-clean": "^0.4.0",
"gulp-eslint-new": "^2.6.1",
"gulp-typescript": "^6.0.0-alpha.1",
"prettier": "^3.8.1",
"tsx": "^4.21.0"
}
}