forked from MarvinJanssen/clarity-stacks
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
31 lines (31 loc) · 948 Bytes
/
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
{
"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"
}
}