package.json 1.4 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556
  1. {
  2. "name": "@metamask/detect-provider",
  3. "version": "1.2.0",
  4. "description": "A tiny utility for detecting the MetaMask Ethereum provider, or any EIP 1193-compliant provider.",
  5. "main": "dist/index.js",
  6. "typings": "dist/index.d.ts",
  7. "files": [
  8. "dist/"
  9. ],
  10. "engines": {
  11. "node": ">= 10"
  12. },
  13. "scripts": {
  14. "pretest": "yarn build",
  15. "test": "node test/*",
  16. "lint": "eslint . --ext ts,js,json",
  17. "lint:fix": "yarn lint --fix",
  18. "build": "./build.sh",
  19. "prepare": "yarn build"
  20. },
  21. "repository": {
  22. "type": "git",
  23. "url": "git+https://github.com/MetaMask/detect-provider.git"
  24. },
  25. "author": "Erik Marks <rekmarks@protonmail.com>",
  26. "license": "ISC",
  27. "private": false,
  28. "publishConfig": {
  29. "access": "public"
  30. },
  31. "keywords": [
  32. "ethereum",
  33. "provider",
  34. "metamask",
  35. "web3"
  36. ],
  37. "bugs": {
  38. "url": "https://github.com/MetaMask/detect-provider/issues"
  39. },
  40. "homepage": "https://github.com/MetaMask/detect-provider#readme",
  41. "devDependencies": {
  42. "@metamask/eslint-config": "^4.1.0",
  43. "@typescript-eslint/eslint-plugin": "^4.5.0",
  44. "@typescript-eslint/parser": "^4.5.0",
  45. "browserify": "^16.5.1",
  46. "eslint": "^7.7.0",
  47. "eslint-plugin-import": "^2.22.0",
  48. "eslint-plugin-json": "^2.1.1",
  49. "eslint-plugin-node": "^11.1.0",
  50. "sinon": "^9.0.2",
  51. "tape": "^5.0.0",
  52. "tinyify": "^3.0.0",
  53. "typescript": "^4.0.3"
  54. },
  55. "dependencies": {}
  56. }