-
Notifications
You must be signed in to change notification settings - Fork 9
Expand file tree
/
Copy pathpackage.json
More file actions
47 lines (47 loc) · 1.08 KB
/
package.json
File metadata and controls
47 lines (47 loc) · 1.08 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
{
"name": "@stacks/clarunit",
"version": "0.1.0",
"description": "Clarunit, enables writing unit tests in Clarity",
"main": "src/index.ts",
"bin": "src/cli.ts",
"type": "module",
"scripts": {
"test": "vitest run -- --coverage"
},
"repository": {
"type": "git",
"url": "git+ssh://git@github.com/stacks-network/clarunit.git"
},
"keywords": [
"stacks",
"blockchain",
"clarity",
"clarinet"
],
"author": "Clarity WG",
"contributors": [
"Friedger Muffke",
"Marvin Janssen",
"Fernando Foy",
"Jesus Najera",
"Nikos Baxevanis"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/stacks-network/clarunit/issues"
},
"homepage": "https://github.com/stacks-network/clarunit#readme",
"dependencies": {
"@hirosystems/clarinet-sdk": "3.1.0",
"@stacks/common": "^7.0.2",
"@stacks/transactions": "7.1.0",
"chokidar-cli": "^3.0.0",
"typescript": "5.8.3",
"vite": "6.3.5",
"vitest": "3.2.3",
"vitest-environment-clarinet": "2.3.0"
},
"devDependencies": {
"fast-check": "4.1.1"
}
}