forked from MetaMask/legacy-web3-extension
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
36 lines (36 loc) · 1.03 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
{
"name": "legacy-web3-extension",
"version": "0.0.0",
"private": true,
"description": "An extension that adds MetaMask's legacy window.web3 API to your browser.",
"repository": "[email protected]:MetaMask/legacy-web3-extension.git",
"author": "Erik Marks <[email protected]>",
"license": "MIT",
"scripts": {
"build": "./build/prep.sh && node build/main.js",
"lint": "eslint . --ext js,json",
"lint:fix": "eslint . --ext js,json --fix",
"test": "yarn lint"
},
"dependencies": {
"@metamask/legacy-web3": "^2.0.0"
},
"devDependencies": {
"@metamask/eslint-config": "^4.1.0",
"@rollup/plugin-commonjs": "^16.0.0",
"@rollup/plugin-node-resolve": "^10.0.0",
"eslint": "^7.14.0",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-json": "^2.1.2",
"eslint-plugin-node": "^11.1.0",
"fs-extra": "^9.0.1",
"get-stream": "^6.0.0",
"quote-stream": "^1.0.2",
"rollup": "^2.33.3",
"yazl": "^2.5.1"
},
"engines": {
"node": "^10.18.1",
"yarn": "^1.16.0"
}
}