git.delta.rocks / unique-network / refs/commits / add913f79e3c

difftreelog

source

tests/package.json1.9 KiBsourcehistory
1{2  "name": "NftTests",3  "version": "1.0.0",4  "description": "Substrate Nft tests",5  "main": "",6  "devDependencies": {7    "@polkadot/dev": "^0.52.11",8    "@polkadot/ts": "^0.3.41",9    "@types/chai": "^4.2.12",10    "@types/chai-as-promised": "^7.1.3",11    "@types/mocha": "^8.0.3",12    "chai": "^4.2.0",13    "mocha": "^8.1.1",14    "ts-node": "^9.0.0",15    "tslint": "^5.20.1",16    "typescript": "^3.9.7"17  },18  "scripts": {19    "test": "mocha --timeout 9999999 -r ts-node/register ./**/*.test.ts",20    "load": "mocha --timeout 9999999 -r ts-node/register ./**/*.load.ts",21    "testAddCollectionAdmin": "mocha --timeout 9999999 -r ts-node/register ./**/addCollectionAdmin.test.ts",22    "testSetSchemaVersion": "mocha --timeout 9999999 -r ts-node/register ./**/setSchemaVersion.test.ts",23    "testSetCollectionLimits": "mocha --timeout 9999999 -r ts-node/register ./**/setCollectionLimits.test.ts",24    "testRemoveCollectionAdmin": "mocha --timeout 9999999 -r ts-node/register ./**/removeCollectionAdmin.test.ts",25    "testConnection": "mocha --timeout 9999999 -r ts-node/register ./**/connection.test.ts",26    "testCollection": "mocha --timeout 9999999 -r ts-node/register ./**/createCollection.test.ts",27    "testApprove": "mocha --timeout 9999999 -r ts-node/register ./**/approve.test.ts",28    "testTransferFrom": "mocha --timeout 9999999 -r ts-node/register ./**/transferFrom.test.ts",29    "testCreateCollection": "mocha --timeout 9999999 -r ts-node/register ./**/createCollection.test.ts"30  },31  "author": "",32  "license": "Apache 2.0",33  "homepage": "",34  "dependencies": {35    "@polkadot/api": "^2.3.1",36    "@polkadot/api-contract": "^2.3.1",37    "@polkadot/types": "^2.3.1",38    "@polkadot/util": "^3.4.1",39    "bignumber.js": "^9.0.0",40    "chai-as-promised": "^7.1.1"41  },42  "standard": {43    "globals": [44      "it",45      "assert",46      "beforeEach",47      "afterEach",48      "describe",49      "contract",50      "artifacts"51    ]52  }53}