@dxos/crypto 2.32.0 → 2.32.1-dev.feb0178a

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (1) hide show
  1. package/package.json +2 -3
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@dxos/crypto",
3
- "version": "2.32.0",
3
+ "version": "2.32.1-dev.feb0178a",
4
4
  "description": "Basic crypto key utils",
5
5
  "license": "MIT",
6
6
  "author": "DXOS.org",
@@ -32,6 +32,5 @@
32
32
  "build:test": "toolchain build:test",
33
33
  "lint": "toolchain lint",
34
34
  "test": "toolchain test"
35
- },
36
- "readme": "# Crypto\n\n[![Build Status](https://travis-ci.com/dxos/crypto.svg?branch=master)](https://travis-ci.com/dxos/crypto)\n[![Coverage Status](https://coveralls.io/repos/github/dxos/crypto/badge.svg?branch=master)](https://coveralls.io/github/dxos/crypto?branch=master)\n[![Greenkeeper badge](https://badges.greenkeeper.io/dxos/crypto.svg)](https://greenkeeper.io/)\n[![js-semistandard-style](https://img.shields.io/badge/code%20style-semistandard-brightgreen.svg?style=flat-square)](https://github.com/standard/semistandard)\n[![standard-readme compliant](https://img.shields.io/badge/readme%20style-standard-brightgreen.svg?style=flat-square)](https://github.com/RichardLitt/standard-readme)\n\n## Install\n\n```\n$ npm install @dxos/crypto\n```\n\n## Usage\n\n```\nimport { createKeyPair } from '@dxos/crypto';\n\nconst { publicKey, secretKey } = createKeyPair();\n```\n\n## Contributing\n\nPRs accepted.\n\n## License\n\nGPL-3.0 © dxos\n"
35
+ }
37
36
  }