-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
39 lines (39 loc) · 1 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
{
"name": "@openlaw/snapshot-js-erc712",
"version": "1.8.1",
"description": "Implementation of ERC-712 structure signatures.",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"license": "MIT",
"dependencies": {
"axios": "^0.21.1",
"eth-sig-util": "^3.0.1",
"ethereumjs-util": "^7.0.10",
"web3-utils": "^1.3.6"
},
"scripts": {
"build": "tsc",
"prepare": "npm test && npm run build",
"release": "np --no-publish --no-yarn",
"test": "jest"
},
"repository": {
"type": "git",
"url": "git+https://github.com/openlawteam/snapshot-js-erc712.git"
},
"author": "OpenLaw Dev Team",
"bugs": {
"url": "https://github.com/openlawteam/snapshot-js-erc712/issues"
},
"homepage": "https://github.com/openlawteam/snapshot-js-erc712#readme",
"devDependencies": {
"@types/jest": "^26.0.23",
"jest": "^27.0.3",
"msw": "^0.29.0",
"np": "^7.5.0",
"ts-jest": "^27.0.2",
"ts-node": "^10.0.0",
"typescript": "^4.3.2",
"web3": "^1.3.6"
}
}