forked from MetaMask/eth-sig-util
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
60 lines (60 loc) · 1.77 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
{
"name": "eth-sig-util",
"version": "3.1.1",
"description": "Fork of https://github.com/MetaMask/eth-sig-util",
"main": "index.js",
"files": [
"index.js",
"eth-sig-util.umd.js",
"eth-sig-util.umd.min.js",
"index.d.ts",
"utils/"
],
"engines": {
"node": ">=12.0.0"
},
"scripts": {
"build": "tsc --project ./tsconfig.prod.json && tsc --project ./tsconfig.test.json",
"lint": "eslint . --ext ts,js,json",
"lint:fix": "yarn lint --fix",
"test": "yarn build && node test/index.js",
"test:browser": "yarn build && airtap test/index.js",
"browser": "yarn build && browserify index.js -s sigUtil -o eth-sig-util.umd.js && terser eth-sig-util.umd.js -c toplevel,sequences=false -m -o eth-sig-util.umd.min.js",
"prepublishOnly": "yarn build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/xmaysonnave/eth-sig-util.git"
},
"keywords": [
"ethereum",
"signature"
],
"author": "Dan Finlay",
"license": "ISC",
"bugs": {
"url": "https://github.com/MetaMask/eth-sig-util/issues"
},
"homepage": "https://github.com/MetaMask/eth-sig-util#readme",
"dependencies": {
"ethereumjs-abi": "^0.6.8",
"ethereumjs-util": "^5.2.1",
"tweetnacl": "^1.0.3",
"tweetnacl-util": "https://github.com/xmaysonnave/tweetnacl-util-js#v0.16.3"
},
"devDependencies": {
"@metamask/eslint-config": "^5.0.0",
"@types/node": "^14.14.25",
"@typescript-eslint/eslint-plugin": "^4.14.2",
"@typescript-eslint/parser": "^4.14.2",
"airtap": "4.0.1",
"airtap-system": "^0.0.2",
"eslint": "^7.19.0",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-json": "^2.1.2",
"eslint-plugin-node": "^11.1.0",
"tape": "^4.9.1",
"terser": "^5.0.0",
"typescript": "4.1.3"
}
}