* Pull api-* packages into lerna repo * Bootstrap with hoist * Update jest alias config * Add api-jsonrpc * Pull in jsonrpc * Update badges * Don't hoist, use workspaces * .eslintrc to root * Cleanups, build from root * Shorthand commands * Update to @polkadot/dev 0.9.1 * Update description
39 lines
967 B
JSON
39 lines
967 B
JSON
{
|
|
"name": "@polkadot/api-jsonrpc",
|
|
"version": "0.5.0",
|
|
"description": "Method definitions for the Polkadot RPC layer",
|
|
"main": "index.js",
|
|
"engines": {
|
|
"node": ">=6.4"
|
|
},
|
|
"publishConfig": {
|
|
"access": "public",
|
|
"registry": "https://registry.npmjs.org"
|
|
},
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "git+https://github.com/polkadot-js/api.git"
|
|
},
|
|
"keywords": [
|
|
"Polkadot",
|
|
"JsonRPC"
|
|
],
|
|
"author": "Jaco Greeff <jacogr@gmail.com>",
|
|
"license": "ISC",
|
|
"bugs": {
|
|
"url": "https://github.com/polkadot-js/api/issues"
|
|
},
|
|
"homepage": "https://github.com/polkadot-js/api/tree/master/packages/api-jsonrpc#readme",
|
|
"scripts": {
|
|
"build": "polkadot-dev-build-babel && polkadot-dev-build-docs",
|
|
"check": "eslint src && flow check",
|
|
"test": "echo \"Tests only available from root wrapper\""
|
|
},
|
|
"devDependencies": {
|
|
"@polkadot/dev": "^0.9.1"
|
|
},
|
|
"dependencies": {
|
|
"babel-runtime": "^6.26.0"
|
|
}
|
|
}
|