-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
46 lines (46 loc) · 1.27 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
{
"name": "@nolanle/mixlib",
"version": "0.0.0-development",
"description": "MIX Wallet Library",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"license": "MIT",
"files": [
"/dist"
],
"scripts": {
"build": "tsc",
"prepare": "yarn build && yarn test",
"test": "mocha -r ts-node/register --timeout 10000 'tests/**/*.ts'",
"format": "prettier -c \"**/*.+(js|jsx|ts|tsx|json|css|md)\"",
"format:fix": "prettier --write \"**/*.+(js|jsx|ts|tsx|json|css|md)\"",
"re": "semantic-release --repository-url git@github.com:nolanle/mixlib.git"
},
"devDependencies": {
"@commitlint/cli": "^17.5.1",
"@commitlint/config-conventional": "^17.4.4",
"@types/chai": "^4.3.4",
"@types/lodash": "^4.14.194",
"@types/mocha": "^10.0.1",
"@types/node": "^18.15.11",
"@types/uuid": "^9.0.1",
"chai": "^4.3.7",
"mocha": "^10.2.0",
"prettier": "^2.8.7",
"semantic-release": "^21.0.1",
"ts-node": "^10.9.1",
"typescript": "^5.0.2"
},
"dependencies": {
"assert": "^2.0.0",
"bip32": "^4.0.0",
"bip39": "^3.1.0",
"ethereumjs-wallet": "^1.0.2",
"lodash": "^4.17.21",
"querystring": "^0.2.1",
"tiny-secp256k1": "1.1.6",
"tronweb": "^5.1.0",
"uuid": "^9.0.0",
"web3": "^1.9.0"
}
}