forked from i-link-pro/crypto-keys-lib
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
82 lines (82 loc) · 2.56 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
{
"name": "crypto-api-keys-lib",
"version": "0.0.8",
"description": "",
"license": "MIT",
"author": "noa",
"module": "dist/mylib.esm.js",
"main": "dist/index.js",
"typings": "dist/index.d.ts",
"scripts": {
"start": "tsdx watch",
"build": "tsdx build --tsconfig ./tsconfig.build.json",
"test": "mocha -r ts-node/register 'tests/**/*.ts'",
"lint:ts": "eslint \"{src,tests}/**/*.ts\" --fix --plugin tsc --rule 'tsc/config: [2, {configFile: \"./tsconfig.json\"}]'",
"format": "prettier --write \"src/**/*.ts\" \"tests/**/*.ts\"",
"release": "standard-version -a"
},
"engines": {
"node": ">=10"
},
"files": [
"dist",
"src"
],
"dependencies": {
"@ethereumjs/tx": "3.5.0",
"@polkadot/api": "^4.15.1",
"bchaddrjs": "^0.4.8",
"bip32": "^2.0.5",
"bip39": "^3.0.2",
"bitcoinjs-lib": "^5.2.0",
"create-hash": "^1.2.0",
"elliptic": "^6.5.4",
"eosjs": "^21.0.3",
"eosjs-ecc": "^4.0.7",
"ethereumjs-tx": "^2.1.2",
"ethereumjs-util": "^7.0.2",
"ethers": "^5.5.1",
"node-fetch": "^2.6.7",
"ripple-address-codec": "^4.1.1",
"ripple-keypairs": "^1.0.1",
"ripple-lib": "1.6.0",
"sodium-plus": "^0.7.1",
"wallet-address-validator": "^0.2.4"
},
"devDependencies": {
"@commitlint/cli": "^8.3.5",
"@commitlint/config-conventional": "^8.3.4",
"@types/bchaddrjs": "^0.4.0",
"@types/bip32": "^2.0.0",
"@types/bip39": "^3.0.0",
"@types/chai": "^4.2.11",
"@types/create-hash": "^1.2.2",
"@types/ethereumjs-util": "^6.1.0",
"@types/mocha": "^7.0.2",
"@types/node": "^14.0.4",
"@types/sinon": "^9.0.4",
"@typescript-eslint/eslint-plugin": "^2.23.0",
"@typescript-eslint/parser": "^2.23.0",
"chai": "^4.2.0",
"eslint": "^6.8.0",
"eslint-config-prettier": "^6.10.0",
"eslint-plugin-import": "^2.20.1",
"eslint-plugin-tsc": "^1.2.0",
"husky": "^4.2.5",
"mocha": "^7.2.0",
"prettier": "^1.19.1",
"replace-in-file": "^6.1.0",
"sinon": "^9.0.2",
"standard-version": "^9.0.0",
"tinyify": "^2.5.2",
"ts-node": "^8.10.2",
"tsdx": "^0.14.1",
"tslib": "^2.0.0",
"typescript": "^3.9.3"
},
"standard-version": {
"scripts": {
"precommit": "node version-bump-in-files.release.js && git add README.md"
}
}
}