-
Notifications
You must be signed in to change notification settings - Fork 31
/
Copy pathpackage.json
34 lines (34 loc) · 854 Bytes
/
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
{
"name": "eth-permit",
"version": "0.2.1",
"description": "Sign permit messages for Ethereum tokens",
"main": "dist/eth-permit.js",
"types": "dist/eth-permit.d.ts",
"author": "David Mihal <[email protected]>",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/dmihal/eth-permit.git"
},
"bugs": {
"url": "https://github.com/dmihal/eth-permit/issues"
},
"scripts": {
"build": "tsc",
"test": "mocha -r ts-node/register test/\\*\\*/\\*.spec.ts"
},
"devDependencies": {
"@openzeppelin/test-environment": "^0.1.4",
"@types/chai": "^4.2.12",
"@types/mocha": "^8.0.1",
"@types/utf8": "^2.1.6",
"chai": "^4.2.0",
"ethers": "^5.5.1",
"mocha": "^8.1.1",
"ts-node": "^8.10.2",
"typescript": "^3.9.7"
},
"dependencies": {
"utf8": "^3.0.0"
}
}