UNPKG

eosplayer

Version:

eosplayer is the glue layer of eosjs, which is packaged based on eosjs and provides better usability for the application layer. It can be used on browsers already installed scatter or in Dapp wallets.

83 lines (82 loc) 2.93 kB
{ "name": "eosplayer", "version": "0.5.12", "description": "eosplayer is the glue layer of eosjs, which is packaged based on eosjs and provides better usability for the application layer. It can be used on browsers already installed scatter or in Dapp wallets.", "main": "build/lib/index.js", "bin": { "eosplayer": "bin/index.js" }, "types": "build/lib/index.d.js", "repository": "git@github.com:bagaking/eosplayer.git", "author": "bagaking <zfaustk@qq.com>", "license": "Apache License 2.0", "keywords": [ "eos", "tonarts", "contract", "eosjs", "scatter", "blockchain" ], "scripts": { "dev": "webpack-dev-server --config webpack.debug.js --open", "build:web": "rimraf ./build/web/ &&webpack --config webpack.prod.js -p --display-error-details", "build:play": "webpack --config webpack.debug.js -p --display-error-details", "build:lib": "rimraf ./build/lib/ && npx tsc && cp LICENSE ./build/lib && cp README.md ./build/lib && node ./scripts/copyPackage.js", "build": "npm run lint:fix && npm run build:web && npm run build:lib && npm run build:play", "build:graph": "depcruise --exclude '^node_modules' --output-type dot src | dot -T svg > dependency.svg", "lint:fix": "npx tslint --fix --project .", "play": "npx hserve ./play", "test": "./node_modules/.bin/mocha test/*test.js --reporter spec", "doc": "jsdoc -c .jsdocrc", "update_version": "node ./scripts/prepublish.js", "prepublishOnly": "npm run build" }, "homepage": "https://github.com/bagaking/eosglue#readme", "dependencies": { "@babel/polyfill": "^7.2.5", "@babel/runtime": "^7.2.0", "@khgame/one-line-call": "^0.1.1", "axios": "^0.18.0", "bignumber.js": "^8.0.1", "debug": "^4.1.0", "eosjs": "^16.0.9", "fetch": "^1.1.0", "idb": "^2.1.3", "scatterjs-core": "^2.7.17", "scatterjs-plugin-eosjs": "^1.5.1", "yargs": "^13.2.2" }, "devDependencies": { "@babel/cli": "^7.2.3", "@babel/core": "^7.2.2", "@babel/plugin-proposal-object-rest-spread": "^7.2.0", "@babel/plugin-transform-async-to-generator": "^7.2.0", "@babel/plugin-transform-runtime": "^7.2.0", "@babel/preset-env": "^7.2.3", "babel-loader": "^8.0.5", "compression-webpack-plugin": "^2.0.0", "dependency-cruiser": "^4.13.3", "docdash": "^1.0.0", "eslint": "^5.12.0", "eslint-config-standard": "^12.0.0", "eslint-plugin-import": "^2.14.0", "eslint-plugin-node": "^8.0.1", "eslint-plugin-promise": "^4.0.1", "eslint-plugin-standard": "^4.0.0", "fs-extra": "^7.0.1", "hserve": "^0.0.1-beta.18", "rimraf": "^2.6.3", "ts-loader": "^5.3.3", "tslint": "^5.12.1", "typescript": "^3.3.3", "uglifyjs-webpack-plugin": "^2.1.1", "webpack": "^4.19.0", "webpack-cli": "^3.1.0", "webpack-dev-server": "^3.1.14" }, "files": [ "build", "bin" ] }