|
10 | 10 | "dist",
|
11 | 11 | "dist.browser"
|
12 | 12 | ],
|
| 13 | + "homepage": "https://github.com/ethereumjs/ethereumjs-wallet", |
| 14 | + "dependencies": { |
| 15 | + "@ethereumjs/util": "^8.0.0-beta.1", |
| 16 | + "@scure/base": "^1.1.1", |
| 17 | + "ethereum-cryptography": "^1.1.0", |
| 18 | + "js-md5": "0.7.3", |
| 19 | + "uuid": "8.3.2" |
| 20 | + }, |
| 21 | + "devDependencies": { |
| 22 | + "@ethereumjs/config-coverage": "^2.0.0", |
| 23 | + "@ethereumjs/config-typescript": "^2.0.0", |
| 24 | + "@ethereumjs/eslint-config-defaults": "^2.0.0", |
| 25 | + "@types/js-md5": "^0.4.3", |
| 26 | + "@types/lodash.zip": "4.2.7", |
| 27 | + "@types/mocha": "9.1.1", |
| 28 | + "@types/node": "18.0.0", |
| 29 | + "ethers": "5.6.9", |
| 30 | + "husky": "4.2.5", |
| 31 | + "karma": "6.4.0", |
| 32 | + "karma-chrome-launcher": "3.1.1", |
| 33 | + "karma-firefox-launcher": "2.1.2", |
| 34 | + "karma-mocha": "2.0.1", |
| 35 | + "karma-typescript": "5.5.3", |
| 36 | + "lodash.zip": "4.2.0", |
| 37 | + "mocha": "10.0.0", |
| 38 | + "nyc": "15.1.0", |
| 39 | + "prettier": "2.6.2", |
| 40 | + "ts-node": "10.9.1", |
| 41 | + "typedoc": "0.23.9", |
| 42 | + "typedoc-plugin-markdown": "3.13.4", |
| 43 | + "typescript": "4.7.3" |
| 44 | + }, |
13 | 45 | "scripts": {
|
14 | 46 | "postinstall": "npm run build",
|
15 |
| - "build": "tsc -p ./tsconfig.prod.json && tsc -p tsconfig.browser.json", |
| 47 | + "build": "tsc -p tsconfig.prod.json", |
16 | 48 | "prepublishOnly": "npm run lint && npm run build && npm run test",
|
17 | 49 | "docs:build": "typedoc --out docs --mode file --readme none --theme markdown --mdEngine github --excludeNotExported src",
|
18 | 50 | "coverage": "npm run build && nyc --reporter=lcov npm run test:unit",
|
19 |
| - "tsc": "tsc -p ./tsconfig.prod.json --noEmit", |
| 51 | + "tsc": "tsc -p tsconfig.prod.json --noEmit", |
20 | 52 | "lint": "ethereumjs-config-lint",
|
21 | 53 | "lint:fix": "ethereumjs-config-lint-fix",
|
22 | 54 | "test": "npm run test:unit && npm run test:browser",
|
23 |
| - "test:unit": "mocha --require ts-node/register ./test/**/*.ts", |
| 55 | + "test:unit": "mocha --require ts-node/register ./test/**/*.spec.ts", |
24 | 56 | "test:browser": "karma start karma.conf.js"
|
25 | 57 | },
|
26 | 58 | "husky": {
|
|
41 | 73 | "license": "MIT",
|
42 | 74 | "bugs": {
|
43 | 75 | "url": "https://github.com/ethereumjs/ethereumjs-wallet/issues"
|
44 |
| - }, |
45 |
| - "homepage": "https://github.com/ethereumjs/ethereumjs-wallet", |
46 |
| - "dependencies": { |
47 |
| - "aes-js": "^3.1.2", |
48 |
| - "bs58check": "^2.1.2", |
49 |
| - "ethereum-cryptography": "^0.1.3", |
50 |
| - "ethereumjs-util": "^7.1.2", |
51 |
| - "randombytes": "^2.1.0", |
52 |
| - "scrypt-js": "^3.0.1", |
53 |
| - "utf8": "^3.0.0", |
54 |
| - "uuid": "^8.3.2" |
55 |
| - }, |
56 |
| - "devDependencies": { |
57 |
| - "@ethereumjs/eslint-config-defaults": "^2.0.0", |
58 |
| - "@ethereumjs/config-coverage": "^2.0.0", |
59 |
| - "@ethereumjs/config-typescript": "^2.0.0", |
60 |
| - "@types/bn.js": "^5.1.0", |
61 |
| - "@types/lodash.zip": "^4.2.6", |
62 |
| - "@types/mocha": "^9.0.0", |
63 |
| - "@types/node": "^12.0.10", |
64 |
| - "ethers": "^4.0.33", |
65 |
| - "husky": "^4.2.5", |
66 |
| - "karma": "^6.3.4", |
67 |
| - "karma-chrome-launcher": "^3.1.0", |
68 |
| - "karma-firefox-launcher": "^2.1.1", |
69 |
| - "karma-mocha": "^2.0.1", |
70 |
| - "karma-typescript": "^5.5.2", |
71 |
| - "lodash.zip": "^4.2.0", |
72 |
| - "mocha": "^9.1.2", |
73 |
| - "nyc": "^15.1.0", |
74 |
| - "prettier": "^2.4.1", |
75 |
| - "ts-node": "^10.2.1", |
76 |
| - "typedoc": "^0.22.5", |
77 |
| - "typedoc-plugin-markdown": "^3.11.3", |
78 |
| - "typescript": "^4.4.3" |
79 | 76 | }
|
80 | 77 | }
|
0 commit comments