This repository has been archived by the owner on Oct 30, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 297
/
package.json
83 lines (83 loc) · 2.55 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
{
"name": "ethereumjs-wallet",
"version": "1.0.2",
"description": "Utilities for handling Ethereum keys",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"browser": "dist.browser/index.js",
"files": [
"src",
"dist",
"dist.browser"
],
"homepage": "https://github.com/ethereumjs/ethereumjs-wallet",
"dependencies": {
"@ethereumjs/util": "^8.0.0",
"@scure/base": "1.1.1",
"ethereum-cryptography": "1.2.0",
"js-md5": "0.7.3",
"uuid": "8.3.2"
},
"devDependencies": {
"eslint": "6.8.0",
"@typescript-eslint/eslint-plugin": "4.27.0",
"@typescript-eslint/parser": "4.27.0",
"eslint-config-prettier": "6.11.0",
"eslint-config-typestrict": "1.0.3",
"eslint-plugin-implicit-dependencies": "1.0.4",
"eslint-plugin-import": "2.26.0",
"eslint-plugin-prettier": "3.1.3",
"eslint-plugin-sonarjs": "0.5.0",
"@types/js-md5": "0.4.3",
"@types/lodash.zip": "4.2.7",
"@types/mocha": "9.1.1",
"@types/node": "18.0.0",
"ethers": "5.6.9",
"husky": "4.2.5",
"karma": "6.4.0",
"karma-chrome-launcher": "3.1.1",
"karma-firefox-launcher": "2.1.2",
"karma-mocha": "2.0.1",
"karma-typescript": "5.5.3",
"lodash.zip": "4.2.0",
"mocha": "10.0.0",
"nyc": "15.1.0",
"prettier": "2.6.2",
"ts-node": "10.9.1",
"typedoc": "0.23.9",
"typedoc-plugin-markdown": "3.13.4",
"typescript": "4.7.3"
},
"scripts": {
"postinstall": "npm run build",
"build": "tsc -p tsconfig.prod.json",
"prepublishOnly": "npm run lint && npm run build && npm run test",
"docs:build": "typedoc --out docs --mode file --readme none --theme markdown --mdEngine github --excludeNotExported src",
"coverage": "npm run build && nyc --reporter=lcov npm run test:unit",
"tsc": "tsc -p tsconfig.prod.json --noEmit",
"lint": "eslint --format codeframe --config ./.eslintrc.js . --ext .js,.jsx,.ts,.tsx",
"lint:fix": "eslint --fix --format codeframe --config ./.eslintrc.js . --ext .js,.jsx,.ts,.tsx",
"test": "npm run test:unit && npm run test:browser",
"test:unit": "mocha --require ts-node/register ./test/**/*.spec.ts",
"test:browser": "karma start karma.conf.js"
},
"husky": {
"hooks": {
"pre-push": "npm run lint"
}
},
"repository": {
"type": "git",
"url": "https://github.com/ethereumjs/ethereumjs-wallet.git"
},
"keywords": [
"ethereum",
"wallets",
"keys"
],
"author": "Alex Beregszaszi <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/ethereumjs/ethereumjs-wallet/issues"
}
}