-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
55 lines (55 loc) · 1.29 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": "ethers-eip712",
"version": "0.2.0",
"description": "Ethereum Typed Data Hashing and Signing (EIP712) implementation for ethers.js",
"repository": "https://github.com/arcadeum/ethers-eip712",
"main": "dist/index.js",
"module": "dist/index.es.js",
"types": "dist/index.d.ts",
"author": "github.com/arcadeum",
"license": "MIT",
"scripts": {
"build": "rimraf ./dist && rollup -c",
"prepublishOnly": "yarn test",
"format": "prettier --write \"src/**/*.ts\" \"tests/**/*.ts\"",
"test:watch": "jest --watchAll",
"test": "jest --ci --runInBand"
},
"files": [
"dist"
],
"dependencies": {
},
"peerDependencies": {
"ethers": "^4.0.47 || ^5.0.8"
},
"devDependencies": {
"@types/jest": "^26.0.9",
"ethers": "^5.0.8",
"jest": "^26.3.0",
"rimraf": "^3.0.2",
"rollup": "^2.23.1",
"rollup-plugin-typescript2": "^0.27.2",
"ts-jest": "^26.1.4",
"ts-node": "^8.8.2",
"typescript": "^3.9.7"
},
"jest": {
"setupFiles": [],
"moduleFileExtensions": [
"ts",
"tsx",
"js",
"json"
],
"roots": [
"src",
"tests"
],
"transform": {
"^.+\\.tsx?$": "ts-jest"
},
"testRegex": "(/__tests__/.*|(\\.|/)(test|spec))\\.(jsx?|tsx?)$",
"moduleNameMapper": {}
}
}