-
-
Notifications
You must be signed in to change notification settings - Fork 64
Expand file tree
/
Copy pathpackage.json
More file actions
64 lines (64 loc) · 1.68 KB
/
package.json
File metadata and controls
64 lines (64 loc) · 1.68 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
61
62
63
64
{
"name": "@metamask/detect-provider",
"version": "2.0.0",
"description": "A tiny utility for detecting the MetaMask Ethereum provider, or any EIP 1193-compliant provider.",
"main": "dist/index.js",
"typings": "dist/index.d.ts",
"files": [
"dist/"
],
"engines": {
"node": "^16.20 || ^18.16 || >=20"
},
"scripts": {
"pretest": "yarn build",
"test": "node test/*",
"lint": "eslint . --ext ts,js,json",
"lint:fix": "yarn lint --fix",
"build": "./build.sh",
"setup": "yarn install && yarn allow-scripts",
"prepublishOnly": "yarn build && yarn test && yarn lint"
},
"repository": {
"type": "git",
"url": "https://github.com/MetaMask/detect-provider.git"
},
"author": "Erik Marks <rekmarks@protonmail.com>",
"license": "ISC",
"private": false,
"publishConfig": {
"access": "public"
},
"keywords": [
"ethereum",
"provider",
"metamask",
"web3"
],
"bugs": {
"url": "https://github.com/MetaMask/detect-provider/issues"
},
"homepage": "https://github.com/MetaMask/detect-provider#readme",
"devDependencies": {
"@lavamoat/allow-scripts": "^2.5.1",
"@metamask/auto-changelog": "^3.0.0",
"@metamask/eslint-config": "^4.1.0",
"@typescript-eslint/eslint-plugin": "^4.5.0",
"@typescript-eslint/parser": "^4.5.0",
"browserify": "^17.0.0",
"eslint": "^7.7.0",
"eslint-plugin-import": "^2.22.0",
"eslint-plugin-json": "^2.1.1",
"eslint-plugin-node": "^11.1.0",
"sinon": "^9.0.2",
"tape": "^5.0.0",
"tinyify": "^4.0.0",
"typescript": "^4.0.3"
},
"dependencies": {},
"lavamoat": {
"allowScripts": {
"@lavamoat/preinstall-always-fail": false
}
}
}