This repository was archived by the owner on Mar 22, 2023. It is now read-only.
forked from MetaMask/providers
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
60 lines (60 loc) · 1.77 KB
/
package.json
File metadata and controls
60 lines (60 loc) · 1.77 KB
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
{
"name": "@metamask/inpage-provider",
"version": "8.0.4",
"description": "A JavaScript Ethereum provider that connects to the wallet over a stream.",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"build": "tsc --project .",
"test": "yarn build && jest",
"coverage": "jest --coverage",
"lint": "eslint . --ext ts,js,json",
"lint:fix": "yarn lint --fix",
"prepublishOnly": "yarn require-clean-git && yarn lint && yarn test",
"require-clean-git": "git diff --quiet || (echo 'Please clean the working directory.' && exit 1)"
},
"author": "MetaMask",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+ssh://git@github.com/MetaMask/inpage-provider.git"
},
"keywords": [
"MetaMask",
"Ethereum",
"Provider"
],
"bugs": {
"url": "https://github.com/MetaMask/inpage-provider/issues"
},
"homepage": "https://github.com/MetaMask/inpage-provider#readme",
"files": [
"dist/"
],
"dependencies": {
"@metamask/object-multiplex": "^1.1.0",
"@metamask/safe-event-emitter": "^2.0.0",
"eth-rpc-errors": "^4.0.2",
"fast-deep-equal": "^2.0.1",
"is-stream": "^2.0.0",
"json-rpc-engine": "^6.1.0",
"json-rpc-middleware-stream": "^3.0.0",
"pump": "^3.0.0"
},
"devDependencies": {
"@metamask/eslint-config": "^4.1.0",
"@types/jest": "^26.0.5",
"@types/node": "^14.14.14",
"@types/pump": "^1.1.0",
"@types/readable-stream": "^2.3.9",
"@typescript-eslint/eslint-plugin": "^4.10.0",
"@typescript-eslint/parser": "^4.10.0",
"eslint": "^7.15.0",
"eslint-plugin-import": "^2.20.2",
"eslint-plugin-jest": "^23.18.0",
"eslint-plugin-json": "^2.0.1",
"eslint-plugin-node": "^11.1.0",
"jest": "^26.6.3",
"typescript": "^4.1.3"
}
}