mirror of
https://github.com/alexgo-io/clarity-stacks.git
synced 2026-01-12 16:52:59 +08:00
32 lines
948 B
JSON
32 lines
948 B
JSON
{
|
|
"name": "clarity-stacks-tests",
|
|
"version": "1.0.0",
|
|
"description": "clarity-stacks, a library to check if a Stacks transaction was mined in Clarity.",
|
|
"type": "module",
|
|
"main": "src/clarity-stacks.ts",
|
|
"private": true,
|
|
"scripts": {
|
|
"test": "vitest run",
|
|
"test:report": "vitest run -- --coverage --costs",
|
|
"test:watch": "chokidar \"tests/**/*.ts\" \"contracts/**/*.clar\" -c \"npm run test:report\""
|
|
},
|
|
"author": "Marvin Janssen",
|
|
"license": "MIT",
|
|
"bugs": {
|
|
"url": "https://github.com/MarvinJanssen/clarity-stacks/issues"
|
|
},
|
|
"homepage": "https://github.com/MarvinJanssen/clarity-stacks#readme",
|
|
"dependencies": {
|
|
"@hirosystems/clarinet-sdk": "^2.3.2",
|
|
"@stacks/transactions": "^6.12.0",
|
|
"chokidar-cli": "^3.0.0",
|
|
"typescript": "^5.3.3",
|
|
"vite": "^5.1.4",
|
|
"vitest": "^1.3.1",
|
|
"vitest-environment-clarinet": "^2.0.0"
|
|
},
|
|
"devDependencies": {
|
|
"ts-node": "^10.9.2"
|
|
}
|
|
}
|