Skip to content

Commit c491b32

Browse files
committed
Fix ecdsa to publish n npm
1 parent 999a407 commit c491b32

File tree

3 files changed

+12
-1
lines changed

3 files changed

+12
-1
lines changed

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,3 +3,4 @@
33
*.pem
44
privateKey.pem
55
publicKey.pem
6+
.idea

.npmignore

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
# This file is written to be a whitelist instead of a blacklist. Start by
2+
# ignoring everything, then add back the files we want to be included in the
3+
# final NPM package.
4+
*
5+
6+
# And these are the files that are allowed.
7+
!/LICENSE
8+
!/README.md
9+
!/package.json
10+
!/ellipticcurve/**/*

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "starkbank-ecdsa",
3-
"version": "0.0.1",
3+
"version": "0.0.2",
44
"description": "fast openSSL-compatible implementation of the Elliptic Curve Digital Signature Algorithm (ECDSA)",
55
"main": "index.js",
66
"directories": {

0 commit comments

Comments
 (0)