This repository was archived by the owner on Oct 21, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
80 lines (80 loc) · 2.09 KB
/
package.json
File metadata and controls
80 lines (80 loc) · 2.09 KB
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
{
"name": "elrondjs",
"version": "2.7.0",
"description": "Javascript SDK for the Elrond blockchain with Typescript support.",
"main": "dist/cjs/index.js",
"module": "dist/esm/index.js",
"types": "dist/cjs/index.d.ts",
"author": "erdDEV team (https://erd.dev)",
"homepage": "https://github.com/erdDEVcode/elrondjs",
"license": "ISC",
"files": [
"dist",
"README.md",
"package.json",
"package-lock.json",
"CHANGELOG.md",
"LICENSE.md"
],
"repository": {
"type": "git",
"url": "https://github.com/erdDEVcode/elrondjs.git"
},
"devDependencies": {
"@commitlint/cli": "^9.1.2",
"@commitlint/config-conventional": "^9.1.2",
"@semantic-release/changelog": "^5.0.1",
"@semantic-release/exec": "^5.0.0",
"@semantic-release/git": "^9.0.0",
"@types/bech32": "^1.1.2",
"@types/chai": "^4.2.14",
"@types/chai-as-promised": "^7.1.3",
"@types/jest": "^26.0.19",
"@types/keccak": "^3.0.1",
"@types/ledgerhq__hw-transport": "^4.21.3",
"@types/lodash": "^4.14.167",
"@types/scryptsy": "^2.0.0",
"chai": "^4.2.0",
"chai-as-promised": "^7.1.1",
"delay": "^4.4.0",
"husky": "^4.3.0",
"jest": "^26.6.3",
"lodash": "^4.17.20",
"narya": "^1.1.1",
"semantic-release": "^17.2.2",
"ts-jest": "^26.4.4",
"typedoc": "^0.19.2",
"typescript": "^4.0.5"
},
"scripts": {
"devnet": "narya",
"build": "tsc && tsc -p tsconfig-esm.json",
"dev": "tsc --watch",
"build-docs": "rm -rf ./docs-api && typedoc",
"prepublishOnly": "npm run build",
"release": "semantic-release",
"test": "jest --runInBand"
},
"husky": {
"hooks": {
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
},
"dependencies": {
"@elrondnetwork/hw-app-elrond": "^0.1.17",
"axios": "^0.21.0",
"bech32": "^1.1.3",
"bigval": "^1.4.0",
"bip39": "^3.0.2",
"buffer": "^6.0.2",
"decimal.js": "^10.2.1",
"ed25519-hd-key": "^1.1.2",
"keccak": "^3.0.1",
"node-fetch": "^2.6.1",
"scryptsy": "^2.1.0",
"tweetnacl": "^1.0.3"
},
"engines": {
"node": ">=12.0.0"
}
}