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

difftreelog

source

tests/package.json1.3 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    "testSetSchemaVersion": "mocha --timeout 9999999 -r ts-node/register ./**/setSchemaVersion.test.ts",22    "testConnection": "mocha --timeout 9999999 -r ts-node/register ./**/connection.test.ts",23    "testCollection": "mocha --timeout 9999999 -r ts-node/register ./**/createCollection.test.ts"24  },25  "author": "",26  "license": "Apache 2.0",27  "homepage": "",28  "dependencies": {29    "@polkadot/api": "^2.3.1",30    "@polkadot/api-contract": "^2.3.1",31    "@polkadot/types": "^2.3.1",32    "@polkadot/util": "^3.4.1",33    "bignumber.js": "^9.0.0",34    "chai-as-promised": "^7.1.1"35  },36  "standard": {37    "globals": [38      "it",39      "assert",40      "beforeEach",41      "afterEach",42      "describe",43      "contract",44      "artifacts"45    ]46  }47}