241 lines
8.6 KiB
JSON
241 lines
8.6 KiB
JSON
{
|
|
"name": "parity.js",
|
|
"version": "1.8.24",
|
|
"main": "release/index.js",
|
|
"jsnext:main": "src/index.js",
|
|
"author": "Parity Team <admin@parity.io>",
|
|
"maintainers": [
|
|
"Jaco Greeff",
|
|
"Nicolas Gotchac"
|
|
],
|
|
"contributors": [
|
|
"Jannis Redmann"
|
|
],
|
|
"license": "GPL-3.0",
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "git+https://github.com/paritytech/parity.git"
|
|
},
|
|
"keywords": [
|
|
"Ethereum",
|
|
"ABI",
|
|
"API",
|
|
"Web3",
|
|
"RPC",
|
|
"Parity",
|
|
"Promise"
|
|
],
|
|
"scripts": {
|
|
"install": "napa",
|
|
"analize": "npm run analize:lib && npm run analize:dll && npm run analize:app",
|
|
"analize:app": "WPANALIZE=1 webpack --config webpack/app --json > .build/analize.app.json && cat .build/analize.app.json | webpack-bundle-size-analyzer",
|
|
"analize:lib": "WPANALIZE=1 webpack --config webpack/libraries --json > .build/analize.lib.json && cat .build/analize.lib.json | webpack-bundle-size-analyzer",
|
|
"analize:dll": "WPANALIZE=1 webpack --config webpack/vendor --json > .build/analize.dll.json && cat .build/analize.dll.json | webpack-bundle-size-analyzer",
|
|
"build": "npm run build:lib && npm run build:dll && npm run build:app && npm run build:embed",
|
|
"build:app": "webpack --config webpack/app",
|
|
"build:lib": "webpack --config webpack/libraries",
|
|
"build:dll": "webpack --config webpack/vendor",
|
|
"build:markdown": "babel-node ./scripts/build-rpc-markdown.js",
|
|
"build:json": "babel-node ./scripts/build-rpc-json.js",
|
|
"build:embed": "EMBED=1 node webpack/embed",
|
|
"build:i18n": "npm run clean && npm run build && babel-node ./scripts/build-i18n.js",
|
|
"ci:build": "npm run ci:build:lib && npm run ci:build:dll && npm run ci:build:app && npm run ci:build:embed",
|
|
"ci:build:app": "NODE_ENV=production webpack --config webpack/app",
|
|
"ci:build:lib": "NODE_ENV=production webpack --config webpack/libraries",
|
|
"ci:build:dll": "NODE_ENV=production webpack --config webpack/vendor",
|
|
"ci:build:npm": "NODE_ENV=production webpack --config webpack/npm",
|
|
"ci:build:jsonrpc": "babel-node ./scripts/build-rpc-json.js --output .npmjs/jsonrpc",
|
|
"ci:build:embed": "NODE_ENV=production EMBED=1 node webpack/embed",
|
|
"start": "npm run clean && npm install && npm run build:lib && npm run build:dll && npm run start:app",
|
|
"start:app": "node webpack/dev.server",
|
|
"clean": "rm -rf ./.build ./.coverage ./.happypack ./.npmjs ./build ./node_modules/.cache ./node_modules/@parity",
|
|
"coveralls": "npm run testCoverage && coveralls < coverage/lcov.info",
|
|
"lint": "npm run lint:css && npm run lint:js",
|
|
"lint:cached": "npm run lint:css && npm run lint:js:cached",
|
|
"lint:css": "stylelint ./src/**/*.css",
|
|
"lint:fix": "npm run lint:js:fix",
|
|
"lint:i18n": "babel-node ./scripts/lint-i18n.js",
|
|
"lint:js": "eslint --ignore-path .gitignore ./src/",
|
|
"lint:js:cached": "eslint --cache --ignore-path .gitignore ./src/",
|
|
"lint:js:fix": "eslint --fix --ignore-path .gitignore ./src/",
|
|
"test": "NODE_ENV=test mocha --compilers ejs:ejsify 'src/**/*.spec.js'",
|
|
"test:coverage": "NODE_ENV=test istanbul cover _mocha -- --compilers ejs:ejsify 'src/**/*.spec.js'",
|
|
"test:e2e": "NODE_ENV=test mocha 'src/**/*.e2e.js'",
|
|
"test:npm": "(cd .npmjs && npm i) && node test/npmParity && node test/npmJsonRpc && (rm -rf .npmjs/node_modules)",
|
|
"prepush": "npm run lint:cached"
|
|
},
|
|
"napa": {
|
|
"qrcode-generator": "kazuhikoarase/qrcode-generator"
|
|
},
|
|
"devDependencies": {
|
|
"babel-cli": "6.23.0",
|
|
"babel-core": "6.23.1",
|
|
"babel-eslint": "7.1.1",
|
|
"babel-loader": "6.3.2",
|
|
"babel-plugin-lodash": "3.2.11",
|
|
"babel-plugin-react-intl": "2.3.1",
|
|
"babel-plugin-recharts": "1.1.0",
|
|
"babel-plugin-transform-class-properties": "6.23.0",
|
|
"babel-plugin-transform-decorators-legacy": "1.3.4",
|
|
"babel-plugin-transform-es2015-modules-commonjs": "6.24.1",
|
|
"babel-plugin-transform-object-rest-spread": "6.23.0",
|
|
"babel-plugin-transform-react-remove-prop-types": "0.3.2",
|
|
"babel-plugin-transform-runtime": "6.23.0",
|
|
"babel-plugin-webpack-alias": "2.1.2",
|
|
"babel-preset-env": "1.1.9",
|
|
"babel-preset-es2015": "6.22.0",
|
|
"babel-preset-es2016": "6.22.0",
|
|
"babel-preset-es2017": "6.22.0",
|
|
"babel-preset-react": "6.23.0",
|
|
"babel-preset-stage-0": "6.22.0",
|
|
"babel-register": "6.23.0",
|
|
"babel-runtime": "6.23.0",
|
|
"chai": "3.5.0",
|
|
"chai-as-promised": "6.0.0",
|
|
"chai-enzyme": "0.6.1",
|
|
"chalk": "1.1.3",
|
|
"circular-dependency-plugin": "2.0.0",
|
|
"copy-webpack-plugin": "4.0.1",
|
|
"core-js": "2.4.1",
|
|
"coveralls": "2.11.16",
|
|
"css-loader": "0.26.1",
|
|
"ejs-loader": "0.3.0",
|
|
"ejsify": "1.0.0",
|
|
"empty-module": "0.0.2",
|
|
"enzyme": "2.7.1",
|
|
"eslint": "3.16.1",
|
|
"eslint-config-semistandard": "7.0.0",
|
|
"eslint-config-standard": "6.2.1",
|
|
"eslint-config-standard-react": "4.2.0",
|
|
"eslint-plugin-promise": "3.4.2",
|
|
"eslint-plugin-react": "6.10.0",
|
|
"eslint-plugin-standard": "2.0.1",
|
|
"express": "4.14.1",
|
|
"extract-loader": "0.1.0",
|
|
"extract-text-webpack-plugin": "2.0.0-beta.4",
|
|
"file-loader": "0.10.0",
|
|
"happypack": "3.0.3",
|
|
"html-loader": "0.4.4",
|
|
"html-webpack-plugin": "2.28.0",
|
|
"http-proxy-middleware": "0.17.3",
|
|
"husky": "0.13.1",
|
|
"ignore-styles": "5.0.1",
|
|
"image-webpack-loader": "3.2.0",
|
|
"istanbul": "1.0.0-alpha.2",
|
|
"jsdom": "9.11.0",
|
|
"json-loader": "0.5.4",
|
|
"markdown-loader": "2.0.0",
|
|
"mocha": "3.2.0",
|
|
"mock-local-storage": "1.0.2",
|
|
"mock-socket": "6.0.4",
|
|
"nock": "9.0.7",
|
|
"postcss-import": "9.1.0",
|
|
"postcss-loader": "1.3.2",
|
|
"postcss-nested": "1.0.0",
|
|
"postcss-simple-vars": "3.0.0",
|
|
"progress": "1.1.8",
|
|
"progress-bar-webpack-plugin": "1.9.3",
|
|
"raw-loader": "0.5.1",
|
|
"react-addons-perf": "15.4.2",
|
|
"react-addons-test-utils": "15.4.2",
|
|
"react-hot-loader": "3.0.0-beta.6",
|
|
"react-intl-aggregate-webpack-plugin": "0.0.1",
|
|
"rucksack-css": "0.9.1",
|
|
"script-ext-html-webpack-plugin": "1.7.1",
|
|
"serviceworker-webpack-plugin": "0.2.0",
|
|
"sinon": "1.17.7",
|
|
"sinon-as-promised": "4.0.2",
|
|
"sinon-chai": "2.8.0",
|
|
"style-loader": "0.13.1",
|
|
"stylelint": "7.9.0",
|
|
"stylelint-config-standard": "16.0.0",
|
|
"to-source": "2.0.3",
|
|
"url-loader": "0.5.7",
|
|
"webpack": "2.2.1",
|
|
"webpack-bundle-size-analyzer": "2.5.0",
|
|
"webpack-dev-middleware": "1.10.1",
|
|
"webpack-error-notification": "0.1.6",
|
|
"webpack-hot-middleware": "2.17.1",
|
|
"websocket": "1.0.24",
|
|
"yargs": "6.6.0"
|
|
},
|
|
"dependencies": {
|
|
"@parity/wordlist": "1.0.1",
|
|
"arraybuffer-loader": "0.2.2",
|
|
"babel-runtime": "6.23.0",
|
|
"base32.js": "0.1.0",
|
|
"bignumber.js": "3.0.1",
|
|
"blockies": "0.0.2",
|
|
"brace": "0.9.0",
|
|
"bytes": "2.4.0",
|
|
"date-difference": "1.0.0",
|
|
"debounce": "1.0.0",
|
|
"es6-error": "4.0.0",
|
|
"es6-promise": "4.0.5",
|
|
"ethereumjs-tx": "1.2.5",
|
|
"eventemitter3": "2.0.2",
|
|
"file-saver": "1.3.3",
|
|
"flat": "2.0.1",
|
|
"format-json": "1.0.3",
|
|
"format-number": "2.0.1",
|
|
"geopattern": "1.2.3",
|
|
"isomorphic-fetch": "2.2.1",
|
|
"js-sha3": "0.5.5",
|
|
"keythereum": "0.4.6",
|
|
"lodash": "4.17.2",
|
|
"loglevel": "1.4.1",
|
|
"marked": "0.3.6",
|
|
"material-ui": "0.16.5",
|
|
"material-ui-chip-input": "0.11.1",
|
|
"mobx": "2.6.4",
|
|
"mobx-react": "4.0.3",
|
|
"mobx-react-devtools": "4.2.10",
|
|
"moment": "2.17.0",
|
|
"napa": "2.3.0",
|
|
"phoneformat.js": "1.0.3",
|
|
"promise-worker": "1.1.1",
|
|
"push.js": "0.0.11",
|
|
"qs": "6.3.0",
|
|
"react": "15.4.2",
|
|
"react-ace": "4.1.0",
|
|
"react-addons-css-transition-group": "15.4.2",
|
|
"react-codemirror": "^0.3.0",
|
|
"react-copy-to-clipboard": "4.2.3",
|
|
"react-dom": "15.4.2",
|
|
"react-dropzone": "3.7.3",
|
|
"react-element-to-jsx-string": "6.0.0",
|
|
"react-event-listener": "0.4.1",
|
|
"react-inspector": "paritytech/react-inspector",
|
|
"react-intl": "2.1.5",
|
|
"react-markdown": "2.4.4",
|
|
"react-portal": "3.0.0",
|
|
"react-qr-reader": "1.1.3",
|
|
"react-redux": "4.4.6",
|
|
"react-router": "3.0.0",
|
|
"react-router-redux": "4.0.7",
|
|
"react-tap-event-plugin": "2.0.1",
|
|
"react-tooltip": "3.2.2",
|
|
"recharts": "0.15.2",
|
|
"redux": "3.6.0",
|
|
"redux-actions": "1.1.0",
|
|
"redux-thunk": "2.1.0",
|
|
"rlp": "2.0.0",
|
|
"scryptsy": "2.0.0",
|
|
"solc": "ngotchac/solc-js",
|
|
"store": "1.3.20",
|
|
"sw-toolbox": "^3.6.0",
|
|
"u2f-api": "0.0.9",
|
|
"u2f-api-polyfill": "0.4.3",
|
|
"uglify-js": "2.8.16",
|
|
"useragent.js": "0.5.6",
|
|
"utf8": "2.1.2",
|
|
"valid-url": "1.0.9",
|
|
"validator": "6.2.0",
|
|
"web3": "0.17.0-beta",
|
|
"whatwg-fetch": "2.0.1",
|
|
"worker-loader": "^0.8.0",
|
|
"yarn": "^0.21.3",
|
|
"zxcvbn": "4.4.1"
|
|
}
|
|
}
|