UNPKG

iuretempore

Version:
117 lines (116 loc) 3.57 kB
{ "name": "iuretempore", "version": "1.1.0", "description": "aelf-sdk js library", "main": "dist/aelf.cjs.js", "browser": "dist/aelf.umd.js", "unpkg": "dist/aelf.umd.js", "jsdelivr": "dist/aelf.umd.js", "scripts": { "build": "npm run clean && npm run build:browser && npm run build:node", "build:browser": "cross-env RUNTIME_ENV=browser webpack --progress --colors --display-chunks --config ./build/webpack.browser.js", "build:node": "cross-env RUNTIME_ENV=node webpack --progress --colors --display-chunks --config ./build/webpack.node.js", "analyze:node": "npm run clean && cross-env RUNTIME_ENV=node webpack --config ./build/webpack.analyze.js", "analyze:browser": "npm run clean && cross-env RUNTIME_ENV=browser webpack --config ./build/webpack.analyze.js", "clean": "rimraf dist/*", "commit": "git-cz", "lint": "eslint src", "proto": "node scripts/compile-proto.js", "release": "standard-version", "test": "npm run test:browser && npm run test:node", "test:browser": "jest --config=jest.browser.config.js", "test:browser:watch": "jest --config=jest.browser.config.js --watch", "test:node": "jest --config=jest.node.config.js", "test:node:watch": "jest --config=jest.node.config.js --watch" }, "keywords": [ "aelf-sdk" ], "files": [ "src", "dist", "proto", "README.md", "yarn.lock" ], "author": "GonzaloShanahan", "license": "MIT", "devEngines": { "node": "10.x || 11.x || 12.x" }, "engines": { "node": ">=10.5.0" }, "engineStrict": true, "dependencies": { "@aelfqueen/protobufjs": "^6.8.9", "@babel/runtime": "^7.4.5", "assert": "^2.0.0", "bignumber.js": "^9.0.0", "bip39": "^3.0.2", "browserify-cipher": "^1.0.1", "bs58": "^4.0.1", "buffer": "^5.2.1", "crypto-js": "^3.1.9-1", "elliptic": "^6.4.1", "hdkey": "^1.1.1", "js-sha256": "^0.9.0", "query-string": "5.1.1", "randombytes": "^2.1.0", "scryptsy": "^2.1.0", "xmlhttprequest": "^1.8.0" }, "devDependencies": { "@babel/core": "^7.4.5", "@babel/plugin-proposal-class-properties": "^7.4.4", "@babel/plugin-transform-runtime": "^7.4.4", "@babel/preset-env": "^7.4.5", "babel-eslint": "^10.0.2", "babel-loader": "^8.0.6", "bundle-analyzer": "^0.0.6", "chalk": "^2.4.2", "commitizen": "^4.0.3", "cross-env": "^5.2.0", "cz-conventional-changelog": "^3.0.2", "eslint": "^6.0.1", "eslint-config-airbnb-base": "^14.0.0", "eslint-plugin-babel": "^5.3.0", "eslint-plugin-import": "^2.18.0", "file-loader": "^4.0.0", "git-cz": "^3.0.1", "glob": "^7.1.4", "husky": "^3.0.0", "jest": "^24.8.0", "jest-environment-jsdom-fifteen": "^1.0.0", "lint-staged": "^9.0.2", "rimraf": "^2.6.3", "standard-version": "^6.0.1", "unused-files-webpack-plugin": "^3.4.0", "webpack": "^4.35.2", "webpack-bundle-analyzer": "^3.3.2", "webpack-cli": "^3.3.5", "webpack-merge": "^4.2.1" }, "husky": { "hooks": { "pre-commit": "lint-staged", "commit-msg": "node scripts/verify-commit-msg.js" } }, "lint-staged": { "*.js": "eslint" }, "config": { "commitizen": { "path": "./node_modules/cz-conventional-changelog" } }, "repository": { "type": "git", "url": "https://github.com/MoriahDibbert/iuretempore.git" }, "bugs": { "url": "https://github.com/MoriahDibbert/iuretempore.git/issues" }, "homepage": "https://github.com/MoriahDibbert/iuretempore.git" }