-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
01dea2d
commit 84f2576
Showing
1 changed file
with
35 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,9 +1,10 @@ | ||
{ | ||
"name": "bip32-ed25519-ts", | ||
"name": "xhd-wallet-api", | ||
"version": "0.0.1", | ||
"description": "A Typescript implementation of BIP-32 Ed25519 for Algorand ARC-52.", | ||
"main": "index.js", | ||
"main": "dist/index.js", | ||
"scripts": { | ||
"build": "tsc", | ||
"test": "jest --verbose", | ||
"test:cov": "jest --coverage" | ||
}, | ||
|
@@ -51,5 +52,36 @@ | |
], | ||
"testEnvironment": "node" | ||
}, | ||
"repository": "[email protected]:algorandfoundation/bip32-ed25519-ts.git" | ||
"repository": "[email protected]:algorandfoundation/bip32-ed25519-ts.git", | ||
"release": { | ||
"plugins": [ | ||
"@semantic-release/commit-analyzer", | ||
"@semantic-release/release-notes-generator", | ||
"@semantic-release/changelog", | ||
"@semantic-release/npm", | ||
[ | ||
"@semantic-release/git", | ||
{ | ||
"assets": [ | ||
"CHANGELOG.md", | ||
"package.json" | ||
], | ||
"message": "chore(release): xHD Wallet API \n\n${nextRelease.notes}" | ||
} | ||
], | ||
[ | ||
"@semantic-release/github", | ||
{ | ||
"successComment": false | ||
} | ||
] | ||
], | ||
"branches": [ | ||
"release/*", | ||
{ | ||
"name": "main", | ||
"prerelease": "canary" | ||
} | ||
] | ||
} | ||
} |