1{2 "author": "",3 "license": "SEE LICENSE IN ../../../LICENSE",4 "description": "Interfaces for interacting with contracts and contract ABIs",5 "engines": {6 "node": ">=16"7 },8 "name": "@unique/tests",9 "type": "module",10 "version": "1.0.0",11 "main": "",12 "dependencies": {13 "rxjs": "^7.8.1",14 "tslib": "^2.6.2"15 },16 "devDependencies": {17 "@types/node": "^20.8.10",18 "mocha": "^10.1.0",19 "ts-node": "^10.9.1",20 "typescript": "^5.1.6"21 },22 "scripts": {23 "setup": "ts-node --esm ./util/globalSetup.ts",24 "setIdentities": "ts-node --esm ./util/identitySetter.ts",25 "checkRelayIdentities": "ts-node --esm ./util/relayIdentitiesChecker.ts",26 "_test": "yarn setup && mocha --timeout 9999999 --loader=ts-node/esm.mjs",27 "_testParallel": "yarn setup && mocha --timeout 9999999 --parallel --loader=ts-node/esm.mjs",28 "test": "yarn _test './**/*.*test.ts'",29 "testParallel": "yarn _testParallel './**/*.test.ts'",30 "testSequential": "yarn _test './**/*.seqtest.ts'",31 "testGovernance": "RUN_GOV_TESTS=1 yarn _test ./**/governance/*.*test.ts",32 "testCollators": "RUN_COLLATOR_TESTS=1 yarn _test ./**/collator-selection/**.*test.ts --timeout 49999999",33 "load": "yarn _test './**/*.load.ts'"34 }35}