-
Notifications
You must be signed in to change notification settings - Fork 35
/
package.json
71 lines (71 loc) · 1.73 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
61
62
63
64
65
66
67
68
69
70
71
{
"name": "use-metamask",
"version": "1.3.3",
"description": "Connect Metamask with React Hook",
"author": {
"name": "Muhammed Tanrikulu",
"email": "[email protected]",
"url": "https://twitter.com/tanrikuIu"
},
"homepage": "https://mdtanrikulu.github.io/use-metamask",
"keywords": [
"react",
"hooks",
"react-hooks",
"blockchain",
"web3",
"wallet",
"crypto",
"metamask"
],
"main": "index.js",
"scripts": {
"build": "babel src --out-dir . && tsc",
"bump": "npm version",
"test": "jest",
"test:watch": "jest --watch",
"test:cov": "jest --coverage",
"test:cov:watch": "jest --coverage --watch",
"example": "cd example && yarn install && yarn package",
"prepublishOnly": "yarn build",
"watch": "nodemon --watch src --exec \"yarn build\""
},
"license": "MIT",
"devDependencies": {
"@babel/cli": "^7.12.10",
"@babel/core": "^7.12.10",
"@babel/preset-env": "^7.12.10",
"@babel/preset-react": "^7.12.10",
"@testing-library/react": "^11.2.2",
"@testing-library/react-hooks": "^3.7.0",
"enzyme": "^3.11.0",
"enzyme-adapter-react-16": "^1.15.5",
"jest": "^26.6.3",
"nodemon": "^2.0.6",
"react": "^17.0.1",
"react-dom": "^17.0.1",
"regenerator-runtime": "^0.13.7",
"typescript": "^4.4.2"
},
"repository": {
"type": "git",
"url": "https://github.com/mdtanrikulu/use-metamask"
},
"bugs": {
"url": "https://github.com/mdtanrikulu/use-metamask/issues"
},
"jest": {
"collectCoverageFrom": [
"src/*.js"
],
"modulePathIgnorePatterns": [
"example"
],
"roots": [
"<rootDir>/test"
],
"setupFilesAfterEnv": [
"<rootDir>/test/setupTests.js"
]
}
}