-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathpackage.json
109 lines (109 loc) · 3.7 KB
/
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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
{
"name": "harmony-marketplace-sdk",
"version": "0.1.2",
"description": "Harmony Marketplace SDK provides a collection of interfaces to interact with HRC721, HRC1155 and any Smart Contracts that extends those standards.",
"author": "Blockcoders <engineering@blockcoders.io>",
"license": "MIT",
"readmeFilename": "README.md",
"main": "./lib/index.js",
"module": "./lib.esm/index.js",
"jsnext:main": "./lib.esnext/index.js",
"types": "./lib/index.d.ts",
"engineStrict": false,
"engines": {
"node": "^14.x || >=16.x"
},
"publishConfig": {
"access": "public"
},
"scripts": {
"pretest": "npm run build:contracts",
"test": "NODE_ENV=test mocha -t 120000 --require ts-node/register src/**/*.spec.ts --exit",
"pretest:watch": "npm run build:contracts",
"test:watch": "NODE_ENV=test mocha -t 120000 --watch --watch-files src/**/*.ts --require ts-node/register src/**/*.spec.ts",
"test:cov": "nyc npm run test",
"pretest:e2e": "npm run build:contracts",
"test:e2e": "NODE_ENV=test mocha -t 360000 --require ts-node/register src/**/*.e2e-spec.ts --exit",
"build:contracts": "hardhat compile",
"clean": "rm -rf ./lib ./lib.esm ./lib.esnext",
"build": "tsc --build ./tsconfig.build.json",
"prebuild-all": "npm run clean",
"build-all": "npm run build-cjs && npm run build-esnext && npm run build-esm",
"build-cjs": "tsc -p tsconfig.build.json --outDir lib -t es3 -m commonjs",
"build-esnext": "tsc -p tsconfig.build.json --outDir lib.esnext -t es2015 -m commonjs",
"build-esm": "tsc -p tsconfig.build.json --outDir lib.esm -t es2015 -m es2015",
"lint:ci": "eslint \"{src,apps,libs,test}/**/*.ts\"",
"lint": "eslint \"{src,apps,libs,test}/**/*.ts\" --fix",
"prepublishOnly": "npm run lint:ci && npm run test && npm run build-all"
},
"precommit": [
"lint:ci",
"test:cov"
],
"repository": {
"type": "git",
"url": "git+https://github.com/blockcoders/harmony-marketplace-sdk.git"
},
"keywords": [
"harmony",
"marketplace",
"blockchain",
"nft",
"hrc721",
"hrc1155",
"harmony-sdk",
"one"
],
"bugs": {
"url": "https://github.com/blockcoders/harmony-marketplace-sdk/issues"
},
"homepage": "https://github.com/blockcoders/harmony-marketplace-sdk#readme",
"dependencies": {
"@harmony-js/contract": "^0.1.56",
"@harmony-js/core": "^0.1.57",
"@harmony-js/transaction": "^0.1.56",
"@ethersproject/abstract-signer": "^5.7.0",
"@ethersproject/bignumber": "^5.7.0",
"@ethersproject/contracts": "^5.7.0",
"@ethersproject/providers": "^5.7.1",
"@ethersproject/units": "^5.7.0",
"@ethersproject/wallet": "^5.7.0"
},
"devDependencies": {
"@openzeppelin/contracts": "^2.5.1",
"@types/bip39": "^2.4.2",
"@types/chai": "^4.3.3",
"@types/chai-as-promised": "^7.1.5",
"@types/hdkey": "^2.0.1",
"@types/mocha": "^10.0.0",
"@types/node": "^16.11.7",
"@types/sinon": "^10.0.13",
"@types/websocket": "^1.0.5",
"@typescript-eslint/eslint-plugin": "^5.38.1",
"@typescript-eslint/parser": "^5.38.1",
"chai": "^4.3.6",
"chai-as-promised": "^7.1.1",
"dotenv": "^16.0.3",
"eslint": "^8.24.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-prettier": "^4.2.1",
"hardhat": "^2.11.2",
"mocha": "^10.0.0",
"nyc": "^15.1.0",
"pre-commit": "^1.2.2",
"prettier": "^2.7.1",
"sinon": "^14.0.0",
"ts-node": "^10.9.1",
"typescript": "4.8.4"
},
"peerDependencies": {
"@harmony-js/account": "0.1.56",
"@harmony-js/crypto": "0.1.56",
"@harmony-js/utils": "^0.1.56",
"bip39": "2.6.0",
"bn.js": "4.12.0",
"hdkey": "1.1.2",
"websocket": "1.0.34"
}
}