-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
28 lines (28 loc) · 826 Bytes
/
package.json
File metadata and controls
28 lines (28 loc) · 826 Bytes
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
{
"name": "subtensor-js-tests",
"version": "1.0.0",
"type": "module",
"description": "Scripts for external testing of subtensor",
"scripts": {
"test": "mocha --timeout 9999999 --file src/setup.js -r ts-node/register 'src/**/*.test.js'",
"stress": "mocha --timeout 9999999 -r ts-node/register 'src/**/*.stress.js'"
},
"author": "",
"license": "ISC",
"dependencies": {
"@babel/runtime": "^7.25.0",
"@polkadot/api": "12.3.1",
"@polkadot/types": "12.3.1",
"@polkadot/types-codec": "12.3.1",
"@types/chai": "^4.3.17",
"@types/chai-as-promised": "^7.1.8",
"bignumber.js": "^9.1.2",
"chai": "^5.1.1",
"chai-as-promised": "^8.0.0",
"chai-bignumber": "^3.1.0",
"ethers": "^6.13.3",
"mocha": "^10.7.0",
"ts-node": "^10.9.2",
"typescript": "^5.5.4"
}
}