-
Notifications
You must be signed in to change notification settings - Fork 12
/
package.json
55 lines (55 loc) · 1.53 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
{
"name": "is-valid-signature",
"version": "0.1.4",
"description": "ERC-1271 - Check if signature is valid for EOA address or contract-based account",
"main": "index.js",
"types": "index.d.ts",
"scripts": {
"test": "truffle test",
"publish-module": "npm publish --access public",
"dist-tag": "npm dist-tag add \"is-valid-signature@$(jq -r .version <package.json)\" latest",
"release": "npm test && npm run publish-module && npm run dist-tag",
"lint": "prettier-standard --format"
},
"repository": {
"type": "git",
"url": "https://github.com/authereum/is-valid-signature"
},
"bugs": {
"url": "https://github.com/authereum/is-valid-signature/issues"
},
"homepage": "https://github.com/authereum/is-valid-signature",
"author": {
"name": "Chris Whinfrey",
"email": "[email protected]",
"url": "https://authereum.org/"
},
"contributors": [
"Miguel Mota <[email protected]>",
"Shane Fontaine <[email protected]>"
],
"license": "MIT",
"dependencies": {
"buffer": "^5.4.3",
"ethers": "5.0.19"
},
"devDependencies": {
"@authereum/utils": "0.0.1-beta.0",
"chai": "^4.2.0",
"ethereumjs-util": "^6.1.0",
"mocha": "^6.1.4",
"openzeppelin-solidity": "^3.1.0",
"prettier-standard": "16.4.1",
"standard": "^14.3.1",
"truffle": "^5.1.35",
"truffle-contract": "^4.0.31",
"typescript": "^4.0.5",
"web3": "^1.3.0",
"web3-utils": "^1.2.0"
},
"keywords": [
"ethereum",
"signature",
"erc1271"
]
}