Skip to content

Commit

Permalink
Merge branch 'release/v0.1.1'
Browse files Browse the repository at this point in the history
build automatically when publishing
  • Loading branch information
mi-xu committed Aug 10, 2018
2 parents c62445d + 246f765 commit 3ddbdc6
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 4 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -156,7 +156,7 @@ A `DIDAttributeChanged` event for the identity `0xf3beac30c498d9e26865f34fcaa57d
```js
{
id: "did:ethr:0xf3beac30c498d9e26865f34fcaa57dbb935b0d74#delegate-1",
type: "Secp256k1VerificationKey2018",
type: "Ed25519VerificationKey2018",
owner: "did:ethr:0xf3beac30c498d9e26865f34fcaa57dbb935b0d74",
publicKeyBase64: "uXww3nZ/CEzjCAFo7ikwU7ozsjXXEWoyY9KfFFCTa3E="
}
Expand Down
8 changes: 5 additions & 3 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "ethr-did-resolver",
"version": "0.1.0",
"version": "0.1.1",
"description": "Resolve DID documents around ethereum addresses",
"main": "lib/register.js",
"repository": {
Expand All @@ -22,11 +22,13 @@
"test": "jest",
"build:es5": "./node_modules/.bin/babel src -d lib",
"build:webpack": "./node_modules/.bin/webpack lib/register.js",
"build": "yarn build:es5 && yarn test && yarn build:webpack"
"build": "yarn build:es5 && yarn test && yarn build:webpack",
"prepublishOnly": "yarn build"
},
"jest": {
"coverageDirectory": "./coverage/",
"collectCoverage": true
"collectCoverage": true,
"testURL": "http://localhost/"
},
"devDependencies": {
"babel-cli": "^6.26.0",
Expand Down

0 comments on commit 3ddbdc6

Please sign in to comment.