-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
36 lines (36 loc) · 955 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": "metachain-ts-tests",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"fmt-check": "prettier ./tests --check",
"fmt": "prettier ./tests --write",
"build": "truffle compile",
"test": "mocha -r ts-node/register 'tests/**/*.ts'",
"test-sql": "METACHAIN_BACKEND_TYPE='sql' mocha -r ts-node/register 'tests/**/*.ts'"
},
"author": "",
"license": "ISC",
"dependencies": {
"@defichain/jellyfish-api-jsonrpc": "^3.30.4",
"@types/chai": "^4.3.5",
"@types/mocha": "^10.0.1",
"chai": "^4.3.7",
"chai-as-promised": "^7.1.1",
"ethers": "^6.3.0",
"is-running": "^2.1.0",
"mocha": "^10.2.0",
"mocha-steps": "^1.3.0",
"rimraf": "^5.0.0",
"truffle": "^5.8.4",
"ts-node": "^10.9.1",
"typescript": "^4.9.5",
"uuid": "^9.0.0",
"web3": "^1.9.0"
},
"devDependencies": {
"@types/chai-as-promised": "^7.1.5",
"prettier": "^2.8.8"
}
}