|
2 | 2 | "name": "ethereumjs-wallet",
|
3 | 3 | "version": "1.0.2",
|
4 | 4 | "description": "Utilities for handling Ethereum keys",
|
| 5 | + "keywords": [ |
| 6 | + "ethereum", |
| 7 | + "wallets", |
| 8 | + "keys" |
| 9 | + ], |
| 10 | + "homepage": "https://github.com/ethereumjs/ethereumjs-wallet", |
| 11 | + "bugs": { |
| 12 | + "url": "https://github.com/ethereumjs/ethereumjs-wallet/issues" |
| 13 | + }, |
| 14 | + "repository": { |
| 15 | + "type": "git", |
| 16 | + "url": "https://github.com/ethereumjs/ethereumjs-monorepo.git" |
| 17 | + }, |
| 18 | + "license": "MIT", |
| 19 | + "author": "Alex Beregszaszi <[email protected]>", |
5 | 20 | "main": "dist/index.js",
|
6 | 21 | "types": "dist/index.d.ts",
|
7 | 22 | "browser": "dist.browser/index.js",
|
|
10 | 25 | "dist",
|
11 | 26 | "dist.browser"
|
12 | 27 | ],
|
13 |
| - "homepage": "https://github.com/ethereumjs/ethereumjs-wallet", |
| 28 | + "scripts": { |
| 29 | + "postinstall": "npm run build", |
| 30 | + "build": "tsc -p tsconfig.prod.json", |
| 31 | + "prepublishOnly": "npm run lint && npm run build && npm run test", |
| 32 | + "docs:build": "typedoc --out docs --mode file --readme none --theme markdown --mdEngine github --excludeNotExported src", |
| 33 | + "coverage": "npm run build && nyc --reporter=lcov npm run test:unit", |
| 34 | + "tsc": "tsc -p tsconfig.prod.json --noEmit", |
| 35 | + "lint": "eslint --format codeframe --config ./.eslintrc.js . --ext .js,.jsx,.ts,.tsx", |
| 36 | + "lint:fix": "eslint --fix --format codeframe --config ./.eslintrc.js . --ext .js,.jsx,.ts,.tsx", |
| 37 | + "test": "npm run test:unit && npm run test:browser", |
| 38 | + "test:unit": "mocha --require ts-node/register ./test/**/*.spec.ts", |
| 39 | + "test:browser": "karma start karma.conf.js" |
| 40 | + }, |
14 | 41 | "dependencies": {
|
15 | 42 | "@ethereumjs/util": "^8.0.6",
|
16 | 43 | "@scure/base": "1.1.1",
|
|
34 | 61 | "mocha": "10.0.0",
|
35 | 62 | "nyc": "15.1.0"
|
36 | 63 | },
|
37 |
| - "scripts": { |
38 |
| - "postinstall": "npm run build", |
39 |
| - "build": "tsc -p tsconfig.prod.json", |
40 |
| - "prepublishOnly": "npm run lint && npm run build && npm run test", |
41 |
| - "docs:build": "typedoc --out docs --mode file --readme none --theme markdown --mdEngine github --excludeNotExported src", |
42 |
| - "coverage": "npm run build && nyc --reporter=lcov npm run test:unit", |
43 |
| - "tsc": "tsc -p tsconfig.prod.json --noEmit", |
44 |
| - "lint": "eslint --format codeframe --config ./.eslintrc.js . --ext .js,.jsx,.ts,.tsx", |
45 |
| - "lint:fix": "eslint --fix --format codeframe --config ./.eslintrc.js . --ext .js,.jsx,.ts,.tsx", |
46 |
| - "test": "npm run test:unit && npm run test:browser", |
47 |
| - "test:unit": "mocha --require ts-node/register ./test/**/*.spec.ts", |
48 |
| - "test:browser": "karma start karma.conf.js" |
49 |
| - }, |
50 | 64 | "husky": {
|
51 | 65 | "hooks": {
|
52 | 66 | "pre-push": "npm run lint"
|
53 | 67 | }
|
54 | 68 | },
|
55 |
| - "repository": { |
56 |
| - "type": "git", |
57 |
| - "url": "https://github.com/ethereumjs/ethereumjs-wallet.git" |
58 |
| - }, |
59 |
| - "keywords": [ |
60 |
| - "ethereum", |
61 |
| - "wallets", |
62 |
| - "keys" |
63 |
| - ], |
64 |
| - "author": "Alex Beregszaszi <[email protected]>", |
65 |
| - "license": "MIT", |
66 |
| - "bugs": { |
67 |
| - "url": "https://github.com/ethereumjs/ethereumjs-wallet/issues" |
| 69 | + "engines": { |
| 70 | + "node": ">=16" |
68 | 71 | }
|
69 | 72 | }
|
0 commit comments