UNPKG

1.44 kBJSONView Raw
1{
2 "name": "eth-sig-util",
3 "version": "3.0.1",
4 "description": "A few useful functions for signing ethereum data",
5 "main": "dist/index.js",
6 "files": [
7 "dist"
8 ],
9 "scripts": {
10 "build": "tsc --project ./tsconfig.prod.json && tsc --project ./tsconfig.test.json",
11 "lint": "eslint . --ext ts,js,json",
12 "lint:fix": "yarn lint --fix",
13 "test": "yarn build && node test/index.js",
14 "test:browser": "yarn build && airtap test/index.js",
15 "prepublishOnly": "yarn build"
16 },
17 "repository": {
18 "type": "git",
19 "url": "git+ssh://git@github.com/MetaMask/eth-sig-util.git"
20 },
21 "keywords": [
22 "ethereum",
23 "signature"
24 ],
25 "author": "Dan Finlay",
26 "license": "ISC",
27 "bugs": {
28 "url": "https://github.com/MetaMask/eth-sig-util/issues"
29 },
30 "homepage": "https://github.com/MetaMask/eth-sig-util#readme",
31 "dependencies": {
32 "ethereumjs-abi": "^0.6.8",
33 "ethereumjs-util": "^5.1.1",
34 "tweetnacl": "^1.0.3",
35 "tweetnacl-util": "^0.15.0"
36 },
37 "devDependencies": {
38 "@metamask/eslint-config": "^5.0.0",
39 "@types/node": "^14.14.25",
40 "@typescript-eslint/eslint-plugin": "^4.14.2",
41 "@typescript-eslint/parser": "^4.14.2",
42 "airtap": "4.0.1",
43 "airtap-system": "^0.0.2",
44 "eslint": "^7.19.0",
45 "eslint-plugin-import": "^2.22.1",
46 "eslint-plugin-json": "^2.1.2",
47 "eslint-plugin-node": "^11.1.0",
48 "tape": "^4.9.1",
49 "typescript": "^4.1.3"
50 }
51}