-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
32 lines (32 loc) · 1.04 KB
/
Copy pathpackage.json
File metadata and controls
32 lines (32 loc) · 1.04 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
{
"name": "TipStream-tests",
"version": "1.0.0",
"description": "Run unit tests on this project.",
"type": "module",
"license": "MIT",
"private": true,
"scripts": {
"pretest": "clarinet check --use-on-disk-deployment-plan",
"test": "vitest run",
"test:verbose": "VERBOSE=true vitest run",
"test:coverage": "vitest run --coverage",
"test:report": "vitest run -- --coverage --costs",
"test:watch": "chokidar \"tests/**/*.ts\" \"contracts/**/*.clar\" -c \"npm run test:report\"",
"test:watch:verbose": "VERBOSE=true chokidar \"tests/**/*.ts\" \"contracts/**/*.clar\" -c \"npm run test:verbose\"",
"validate:csp": "node scripts/validate-csp.cjs"
},
"author": "Mosas2000",
"dependencies": {
"@hirosystems/clarinet-sdk": "^3.6.0",
"@stacks/network": "^7.3.1",
"@stacks/transactions": "^7.4.0",
"@stacks/wallet-sdk": "^7.2.0",
"@types/node": "^24.4.0",
"chokidar-cli": "^3.0.0",
"vitest": "^3.2.4",
"vitest-environment-clarinet": "^2.3.0"
},
"engines": {
"node": ">=20.0.0"
}
}