1
0
mirror of https://github.com/kremalicious/metamask-extension.git synced 2024-11-23 10:30:04 +01:00
🦊 Minimalized version of MetaMask for my own personal use.
Go to file
Whymarrh Whitby 6132238302 Remove superstatic package
Install and uninstalling superstatic doesn't work on Node 8 at the time of
writing:

    $ npm install -D superstatic@6
    npm ERR! code ENOTSUP
    npm ERR! notsup Unsupported engine for got@5.7.1: wanted: {"node":">=0.10.0 <7"} (current: {"node":"8.11.3","npm":"6.3.0"})
    npm ERR! notsup Not compatible with your version of node/npm: got@5.7.1
    npm ERR! notsup Not compatible with your version of node/npm: got@5.7.1
    npm ERR! notsup Required: {"node":">=0.10.0 <7"}
    npm ERR! notsup Actual:   {"npm":"6.3.0","node":"8.11.3"}

This commit removes the package (using Node 6!) and it will have to be replaced.
2018-08-06 15:47:57 -02:30
.circleci test npm i --no-save 2018-07-21 13:47:10 -04:00
.github Added codeowners file 2018-07-17 20:14:53 -07:00
.storybook
app Update Phishing Html 2018-07-27 14:10:18 -07:00
development fix tos link; 2018-07-12 16:24:13 -04:00
docs added TREZOR simulator instructions 2018-07-13 20:31:40 -04:00
mascara Fix seed word confirmation step of e2e beta tests. 2018-08-06 12:14:06 -02:30
notices fix tos link; 2018-07-12 16:24:13 -04:00
old-ui Show the retry button on latest tx of earliest nonce. 2018-07-31 16:37:14 -02:30
test Fix seed word confirmation step of e2e beta tests. 2018-08-06 12:14:06 -02:30
ui Merge pull request #4948 from MetaMask/i4638-update-font 2018-08-03 17:24:42 -07:00
.babelrc Update Babel to Current Standard "babel-preset-env" (#4812) 2018-07-24 15:21:32 -02:30
.dockerignore
.editorconfig
.eslintignore
.eslintrc
.gitattributes
.gitignore ignore vim files 2018-07-20 16:00:41 -07:00
.npmrc added node version requirements 2018-07-21 12:43:35 -04:00
.nsprc
.nvmrc
.stylelintignore
.stylelintrc
.travis.yml
.yo-rc.json
CHANGELOG.md network.js: convert rpc protocol to lower case (#4855) 2018-07-24 19:33:36 -02:30
CONTRIBUTING.md update contributing.md 2018-07-05 17:52:26 -04:00
docker-compose.yml
Dockerfile
fonts
gentests.js
gulpfile.js
images
ISSUE_TEMPLATE
LICENSE
MISSION.md
package-lock.json Remove superstatic package 2018-08-06 15:47:57 -02:30
package.json Remove superstatic package 2018-08-06 15:47:57 -02:30
README.md Select not Update 2018-07-30 16:59:08 -07:00
USER_AGREEMENT.md fix tos link; 2018-07-12 16:24:13 -04:00

MetaMask Browser Extension

Build Status Coverage Status Greenkeeper badge Stories in Ready

Support

If you're a user seeking support, here is our support site.

Introduction

Mission Statement

Internal documentation

Developing Compatible Dapps

If you're a web dapp developer, we've got two types of guides for you:

New Dapp Developers

Current Dapp Developers

Building locally

  • Install Node.js version 8.11.3 and npm version 6.1.0
    • If you are using nvm (recommended) running nvm use will automatically choose the right node version for you.
    • Select npm 6.1.0: npm install -g npm@6.1.0
  • Install dependencies: npm install
  • Install gulp globally with npm install -g gulp-cli.
  • Build the project to the ./dist/ folder with gulp build.
  • Optionally, to rebuild on file changes, run gulp dev.
  • To package .zip files for distribution, run gulp zip, or run the full build & zip with gulp dist.

Uncompressed builds can be found in /dist, compressed builds can be found in /builds once they're built.

Running Tests

Requires mocha installed. Run npm install -g mocha.

Then just run npm test.

You can also test with a continuously watching process, via npm run watch.

You can run the linter by itself with gulp lint.

Architecture

Architecture Diagram

Development

npm install
npm start

Build for Publishing

npm run dist

Writing Browser Tests

To write tests that will be run in the browser using QUnit, add your test files to test/integration/lib.

Other Docs