-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
36 lines (36 loc) · 1017 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
32
33
34
35
36
{
"name": "rendezvous",
"version": "0.1.1",
"description": "Meet your contract's vulnerabilities head-on.",
"main": "app.js",
"bin": {
"rv": "./dist/app.js"
},
"scripts": {
"postinstall": "npx -p typescript tsc --project tsconfig.json && node -e \"if (process.platform !== 'win32') require('fs').chmodSync('./dist/app.js', 0o755);\"",
"test": "npx tsc --project tsconfig.json && 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",
"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.3",
"typescript": "^5.5.4"
}
}