forked from alturanft/JS-SDK
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
62 lines (62 loc) · 1.5 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
{
"name": "@altura/altura-js",
"version": "1.1.7",
"description": "Javascript SDK for AlturaNFT",
"license": "MIT",
"author": "Altura Developers",
"homepage": "https://www.alturanft.com/",
"repository": {
"type": "git",
"url": "git+https://github.com/alturanft/JS-SDK.git"
},
"bugs": {
"url": "https://github.com/alturanft/JS-SDK/issues"
},
"main": "lib/index.js",
"scripts": {
"test": "jest --coverage --config jestconfig.json",
"build": "tsc",
"format": "prettier --write \"src/**/*.ts\"",
"lint": "tslint -p tsconfig.json",
"prepare": "npm run build",
"prepublishOnly": "npm run test && npm run lint",
"preversion": "npm run lint",
"version": "npm run format && git add -A src",
"postversion": "git push && git push --tags"
},
"files": [
"lib/**/*"
],
"types": "lib/index.d.ts",
"keywords": [
"altura",
"nft",
"marketplace",
"node",
"sdk",
"smart-contracts",
"javascript",
"ethereum",
"binance",
"crypto"
],
"devDependencies": {
"@types/jest": "^27.5.1",
"dotenv": "^16.0.1",
"jest": "^28.1.0",
"logging-library": "^0.5.0",
"prettier": "^2.6.2",
"ts-jest": "^28.0.2",
"tslint": "^6.1.3",
"tslint-config-prettier": "^1.18.0",
"typescript": "^4.6.4"
},
"dependencies": {
"@walletconnect/web3-provider": "^1.7.8",
"axios": "^1.4.0",
"ethers": "^5.7.2",
"isomorphic-unfetch": "^3.1.0",
"query-string": "^7.1.1",
"web3-utils": "^1.9.0"
}
}