-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
46 lines (46 loc) · 1.14 KB
/
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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
{
"name": "@stacks/rendezvous",
"version": "0.3.0",
"description": "Meet your contract's vulnerabilities head-on.",
"main": "app.js",
"bin": {
"rv": "./dist/app.js"
},
"scripts": {
"build": "npx -p typescript tsc --project tsconfig.json && node -e \"if (process.platform !== 'win32') require('fs').chmodSync('./dist/app.js', 0o755);\"",
"test": "npx jest",
"test:coverage": "npx tsc --project tsconfig.json && npx jest --coverage"
},
"keywords": [
"stacks",
"clarity",
"fuzz",
"testing"
],
"author": "Radu Bahmata, Nikos Baxevanis",
"license": "GPL-3.0-only",
"files": [
"dist/",
"package.json",
"README.md",
"LICENSE"
],
"repository": {
"type": "git",
"url": "https://github.com/stacks-network/rendezvous.git"
},
"dependencies": {
"@hirosystems/clarinet-sdk": "2.12.0",
"@stacks/transactions": "^6.16.1",
"ansicolor": "^2.0.3",
"fast-check": "^3.20.0",
"yaml": "^2.6.1"
},
"devDependencies": {
"@hirosystems/clarinet-sdk-wasm": "2.12.0",
"@types/jest": "^29.5.12",
"jest": "^29.7.0",
"ts-jest": "^29.2.5",
"typescript": "^5.5.4"
}
}