1
0
mirror of https://github.com/kremalicious/metamask-extension.git synced 2024-10-22 11:22:43 +02:00
metamask-extension/package.json

225 lines
7.7 KiB
JSON
Raw Normal View History

2015-08-01 03:38:02 +02:00
{
2015-10-10 08:14:18 +02:00
"name": "metamask-crx",
2015-08-01 03:38:02 +02:00
"version": "0.0.0",
2015-10-10 08:14:18 +02:00
"public": false,
"private": true,
2016-01-15 03:26:54 +01:00
"scripts": {
2016-10-20 00:15:27 +02:00
"start": "npm run dev",
2016-10-19 23:57:30 +02:00
"dev": "gulp dev --debug",
"ui": "npm run test:flat:build:states && beefy ui-dev.js:bundle.js --live --open --index=./development/index.html --cwd ./",
"mock": "beefy mock-dev.js:bundle.js --live --open --index=./development/index.html --cwd ./",
"watch": "mocha watch --recursive \"test/unit/**/*.js\"",
2017-09-20 01:48:42 +02:00
"mascara": "METAMASK_DEBUG=true node ./mascara/example/server",
"dist": "npm run dist:clear && npm install && gulp dist",
"dist:clear": "rm -rf node_modules/eth-contract-metadata && rm -rf node_modules/eth-phishing-detect",
"test": "npm run lint && npm run test:coverage && npm run test:integration",
"test:unit": "METAMASK_ENV=test mocha --exit --compilers js:babel-core/register --require test/helper.js --recursive \"test/unit/**/*.js\"",
"test:single": "METAMASK_ENV=test mocha --require test/helper.js",
"test:integration": "npm run test:flat && npm run test:mascara",
"test:coverage": "nyc npm run test:unit && npm run test:coveralls-upload",
"test:coveralls-upload": "if [ $COVERALLS_REPO_TOKEN ]; then nyc report --reporter=text-lcov | coveralls; fi",
"test:flat": "npm run test:flat:build && karma start test/flat.conf.js",
"test:flat:build": "npm run test:flat:build:ui && npm run test:flat:build:tests",
"test:flat:build:tests": "node test/integration/index.js",
"test:flat:build:states": "node development/genStates.js",
"test:flat:build:ui": "npm run test:flat:build:states && browserify ./mock-dev.js -o ./development/bundle.js",
"test:mascara": "npm run test:mascara:build && karma start test/mascara.conf.js",
"test:mascara:build": "mkdir -p dist/mascara && npm run test:mascara:build:ui && npm run test:mascara:build:background && npm run test:mascara:build:tests",
"test:mascara:build:ui": "browserify mascara/test/test-ui.js -o dist/mascara/ui.js",
"test:mascara:build:background": "browserify mascara/src/background.js -o dist/mascara/background.js",
"test:mascara:build:tests": "browserify test/integration/lib/first-time.js -o dist/mascara/tests.js",
"lint": "gulp lint",
"lint:fix": "gulp lint:fix",
"disc": "gulp disc --debug",
"announce": "node development/announcer.js",
2017-02-03 00:02:32 +01:00
"generateNotice": "node notices/notice-generator.js",
"deleteNotice": "node notices/notice-delete.js"
},
"browserify": {
"transform": [
[
"babelify",
{
"presets": [
2017-05-12 20:31:40 +02:00
"es2015",
2017-05-16 00:31:19 +02:00
"stage-0"
]
}
2017-01-11 00:33:00 +01:00
],
2017-04-05 19:24:30 +02:00
"envify",
2017-01-11 00:33:00 +01:00
"brfs"
]
2016-01-15 03:26:54 +01:00
},
2015-08-01 03:38:02 +02:00
"dependencies": {
2017-07-19 00:41:30 +02:00
"async": "^2.5.0",
"await-semaphore": "^0.1.1",
2017-05-12 20:31:40 +02:00
"babel-runtime": "^6.23.0",
"bluebird": "^3.5.0",
2017-08-04 20:42:13 +02:00
"bn.js": "^4.11.7",
2016-04-20 22:22:41 +02:00
"browserify-derequire": "^0.9.4",
2017-08-23 13:04:11 +02:00
"classnames": "^2.2.5",
2017-06-09 02:33:27 +02:00
"client-sw-ready-event": "^3.3.0",
2017-07-19 00:41:30 +02:00
"clone": "^2.1.1",
2017-08-04 01:38:44 +02:00
"copy-to-clipboard": "^3.0.8",
"debounce": "^1.0.0",
2017-07-19 00:41:30 +02:00
"deep-extend": "^0.5.0",
2017-05-15 23:35:24 +02:00
"detect-node": "^2.0.3",
2017-01-10 22:46:15 +01:00
"disc": "^1.3.2",
2016-01-15 11:03:42 +01:00
"dnode": "^1.2.2",
2016-01-17 10:27:25 +01:00
"end-of-stream": "^1.1.0",
2016-08-12 22:25:38 +02:00
"ensnare": "^1.0.0",
2017-09-25 08:27:08 +02:00
"eslint-plugin-react": "^7.4.0",
2016-10-25 01:12:44 +02:00
"eth-bin-to-ops": "^1.0.1",
2018-01-18 07:07:08 +01:00
"eth-block-tracker": "^2.3.0",
2017-07-13 00:31:29 +02:00
"eth-contract-metadata": "^1.1.4",
"eth-json-rpc-filters": "^1.2.5",
"eth-json-rpc-infura": "^2.0.11",
2018-01-15 23:11:59 +01:00
"eth-keyring-controller": "^2.1.4",
2017-08-04 23:11:40 +02:00
"eth-phishing-detect": "^1.1.4",
2017-06-15 06:42:29 +02:00
"eth-query": "^2.1.2",
"eth-sig-util": "^1.4.2",
"eth-token-tracker": "^1.1.4",
"ethereumjs-tx": "^1.3.0",
2017-08-04 01:38:44 +02:00
"ethereumjs-util": "github:ethereumjs/ethereumjs-util#ac5d0908536b447083ea422b435da27f26615de9",
2016-10-21 01:44:31 +02:00
"ethereumjs-wallet": "^0.6.0",
2017-10-14 17:23:44 +02:00
"etherscan-link": "^1.0.2",
"ethjs-contract": "^0.1.9",
"ethjs-ens": "^2.0.0",
2017-11-27 20:49:49 +01:00
"ethjs-query": "^0.3.1",
2017-09-27 23:59:10 +02:00
"express": "^4.15.5",
"extension-link-enabler": "^1.0.0",
"extensionizer": "^1.0.0",
"fast-json-patch": "^2.0.4",
"fast-levenshtein": "^2.0.6",
"hat": "0.0.3",
"human-standard-token-abi": "^1.0.2",
2017-07-19 00:41:30 +02:00
"idb-global": "^2.1.0",
"identicon.js": "^2.3.1",
2016-08-26 20:08:23 +02:00
"iframe": "^1.0.0",
2017-07-19 00:41:30 +02:00
"iframe-stream": "^3.0.0",
2016-01-15 03:26:54 +01:00
"inject-css": "^0.1.1",
2016-10-28 01:01:21 +02:00
"jazzicon": "^1.2.0",
2018-01-22 21:52:15 +01:00
"json-rpc-engine": "^3.6.1",
2017-09-19 20:22:55 +02:00
"json-rpc-middleware-stream": "^1.0.1",
2017-08-30 11:05:45 +02:00
"lodash.debounce": "^4.0.8",
"lodash.memoize": "^4.1.2",
"lodash.shuffle": "^4.2.0",
"lodash.uniqby": "^4.7.0",
2017-02-20 21:59:44 +01:00
"loglevel": "^1.4.1",
2017-09-23 05:04:58 +02:00
"metamascara": "^1.3.1",
"metamask-logo": "^2.1.2",
2016-05-23 00:23:16 +02:00
"mississippi": "^1.2.0",
2017-01-10 22:46:15 +01:00
"mkdirp": "^0.5.1",
2016-03-10 03:33:30 +01:00
"multiplex": "^6.7.0",
2017-05-23 00:43:20 +02:00
"number-to-bn": "^1.7.0",
"obj-multiplex": "^1.0.0",
"obs-store": "^3.0.0",
2016-05-06 01:04:43 +02:00
"once": "^1.3.3",
"percentile": "^1.2.0",
"ping-pong-stream": "^1.0.0",
"pojo-migrator": "^2.1.0",
2016-04-18 20:31:06 +02:00
"polyfill-crypto.getrandomvalues": "^1.0.0",
2017-07-19 00:41:30 +02:00
"post-message-stream": "^3.0.0",
2016-11-29 23:56:02 +01:00
"promise-filter": "^1.1.0",
"promise-to-callback": "^1.0.0",
2017-01-25 04:47:00 +01:00
"pump": "^1.0.2",
2016-03-10 22:04:45 +01:00
"pumpify": "^1.3.4",
"qrcode-npm": "0.0.3",
2017-11-27 20:49:49 +01:00
"react": "^15.6.2",
"react-addons-css-transition-group": "^15.6.0",
2017-11-27 20:49:49 +01:00
"react-dom": "^15.6.2",
2017-07-19 00:41:30 +02:00
"react-hyperscript": "^3.0.0",
"react-markdown": "^3.0.0",
2017-07-19 00:41:30 +02:00
"react-redux": "^5.0.5",
"react-select": "^1.0.0-rc.2",
"react-simple-file-input": "^2.0.0",
2016-06-30 00:57:59 +02:00
"react-tooltip-component": "^0.3.0",
2017-10-03 23:43:11 +02:00
"react-trigger-change": "^1.0.2",
"readable-stream": "^2.3.3",
2017-08-21 13:56:09 +02:00
"recompose": "^0.25.0",
"redux": "^3.0.5",
2017-07-19 00:41:30 +02:00
"redux-logger": "^3.0.6",
"redux-thunk": "^2.2.0",
2017-09-22 19:41:14 +02:00
"request-promise": "^4.2.1",
"sandwich-expando": "^1.1.3",
"semaphore": "^1.0.5",
"semver": "^5.4.1",
"sw-stream": "^2.0.0",
"textarea-caret": "^3.0.1",
2017-08-04 01:38:44 +02:00
"through2": "^2.0.3",
2016-12-21 01:41:04 +01:00
"valid-url": "^1.0.9",
2016-05-14 02:02:33 +02:00
"vreme": "^3.0.2",
2017-08-04 01:38:44 +02:00
"web3": "^0.20.1",
"web3-provider-engine": "^13.5.6",
"web3-stream-provider": "^3.0.1",
2016-02-15 11:19:08 +01:00
"xtend": "^4.0.1"
2015-08-01 03:38:02 +02:00
},
"devDependencies": {
"babel-core": "^6.24.1",
"babel-eslint": "^8.0.0",
"babel-plugin-transform-async-to-generator": "^6.24.1",
"babel-plugin-transform-runtime": "^6.23.0",
"babel-polyfill": "^6.23.0",
2017-09-04 23:39:27 +02:00
"babel-preset-react": "^6.24.1",
"babel-preset-stage-0": "^6.24.1",
2016-03-25 01:51:46 +01:00
"babel-register": "^6.7.2",
2017-11-27 20:49:49 +01:00
"babelify": "^8.0.0",
"beefy": "^2.1.5",
2016-04-15 00:26:26 +02:00
"brfs": "^1.4.3",
2017-07-19 00:41:30 +02:00
"browserify": "^14.4.0",
"chai": "^4.1.0",
"coveralls": "^3.0.0",
"deep-freeze-strict": "^1.1.1",
2017-07-19 00:41:30 +02:00
"del": "^3.0.0",
2017-04-05 19:24:30 +02:00
"envify": "^4.0.0",
2017-11-27 20:49:49 +01:00
"enzyme": "^3.2.0",
2017-05-04 23:34:25 +02:00
"eslint-plugin-chai": "0.0.1",
"eslint-plugin-mocha": "^4.9.0",
"eth-json-rpc-middleware": "^1.2.7",
2017-08-09 02:46:09 +02:00
"fs-promise": "^2.0.3",
"gulp": "github:gulpjs/gulp#6d71a658c61edb3090221579d8f97dbe086ba2ed",
2016-09-02 00:01:45 +02:00
"gulp-if": "^2.0.1",
"gulp-json-editor": "^2.2.1",
2016-03-03 08:06:43 +01:00
"gulp-livereload": "^3.8.1",
2017-07-19 00:41:30 +02:00
"gulp-replace": "^0.6.1",
"gulp-sourcemaps": "^2.6.0",
2016-03-03 08:29:43 +01:00
"gulp-util": "^3.0.7",
2016-03-03 08:06:43 +01:00
"gulp-watch": "^4.3.5",
2017-07-19 00:41:30 +02:00
"gulp-zip": "^4.0.0",
2018-01-10 22:51:25 +01:00
"gulp-eslint": "^4.0.0",
2017-01-10 21:39:01 +01:00
"isomorphic-fetch": "^2.2.1",
2017-07-19 00:41:30 +02:00
"jsdom": "^11.1.0",
"jsdom-global": "^3.0.2",
"jshint-stylish": "~2.2.1",
"karma": "^1.7.1",
"karma-chrome-launcher": "^2.2.0",
"karma-cli": "^1.0.1",
"karma-firefox-launcher": "^1.0.1",
"karma-qunit": "^1.2.1",
2016-03-03 08:29:43 +01:00
"lodash.assign": "^4.0.6",
"mocha": "^4.0.0",
2017-07-19 00:41:30 +02:00
"mocha-eslint": "^4.0.0",
"mocha-jsdom": "^1.1.0",
2017-07-19 00:41:30 +02:00
"mocha-sinon": "^2.0.0",
"nock": "^9.0.14",
"nyc": "^11.0.3",
"open": "0.0.5",
"prompt": "^1.0.0",
2016-07-01 03:22:16 +02:00
"qs": "^6.2.0",
2017-11-27 20:49:49 +01:00
"qunitjs": "^2.4.1",
"react-addons-test-utils": "^15.5.1",
2017-11-27 20:49:49 +01:00
"react-test-renderer": "^15.6.2",
"react-testutils-additions": "^15.2.0",
"sinon": "^4.0.0",
2016-04-15 00:26:26 +02:00
"tape": "^4.5.1",
2016-08-10 19:34:18 +02:00
"testem": "^1.10.3",
2017-07-19 00:41:30 +02:00
"uglifyify": "^4.0.2",
2018-01-04 13:40:38 +01:00
"vinyl-buffer": "^1.0.1",
"vinyl-source-stream": "^2.0.0",
2017-08-09 02:46:09 +02:00
"watchify": "^3.9.0"
2015-08-01 03:38:02 +02:00
},
"engines": {
"node": ">=0.8.0"
}
}