forked from hirosystems/stacks-pyth-bridge
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
33 lines (33 loc) · 910 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
{
"name": "stacks-pyth-testing",
"version": "1.0.0",
"description": "**Status**: *Alpha, do not use in production*",
"main": "index.js",
"directories": {
"test": "unit-tests"
},
"scripts": {
"test": "vitest run",
"test:watch": "chokidar \"tests/**/*.ts\" \"contracts/**/*.clar\" -c \"npm run test:coverage\"",
"test:coverage": "vitest run -- --coverage",
"format": "prettier ./unit-tests --write"
},
"author": "",
"license": "ISC",
"type": "module",
"dependencies": {
"@hirosystems/clarinet-sdk": "^1.0.2",
"@noble/hashes": "^1.3.2",
"@noble/secp256k1": "^2.0.0",
"@stacks/transactions": "^6.9.0",
"vitest": "^0.34.1",
"vitest-environment-clarinet": "^1.0.3"
},
"devDependencies": {
"@fast-check/vitest": "^0.0.8",
"@vitest/ui": "^0.34.6",
"chokidar-cli": "^3.0.0",
"fast-check": "^3.13.1",
"prettier": "^3.0.3"
}
}