From 2e1a98c6af4179f6aa9e5d558da9f6fbcb43250c Mon Sep 17 00:00:00 2001 From: Achmad Irianto Eka Putra Date: Wed, 9 Feb 2022 06:13:45 +0700 Subject: [PATCH] v3.0.2 --- package.json | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/package.json b/package.json index ad608b6..7191076 100644 --- a/package.json +++ b/package.json @@ -1,12 +1,13 @@ { - "name": "@ryanbekhen/cryptkhen", - "version": "3.0.1", + "name": "cryptkhen", + "version": "3.0.2", "description": "Simple security signature", "main": "lib/index.js", "types": "lib/index.d.ts", "scripts": { "test": "jest --config jestconfig.json", - "build": "tsc", + "clean": "rm -rf lib", + "build": "yarn clean && tsc", "format": "prettier --write \"src/**/*.ts\"", "lint": "tslint -p tsconfig.json", "prepare": "yarn build", @@ -24,15 +25,11 @@ "cryptography", "crypto" ], - "author": { - "name": "Achmad Irianto Eka Putra", - "email": "ryanbekhen.official@gmail.com", - "url": "https://www.ryanbekhen.me" - }, + "author": "Achmad Irianto Eka Putra (https://www.ryanbekhen.dev)", "license": "Apache-2.0", "repository": { "type": "git", - "url": "https://github.com/ryanbekhen/cryptkhen.git" + "url": "git+https://github.com/ryanbekhen/cryptkhen.git" }, "bugs": { "url": "https://github.com/ryanbekhen/cryptkhen/issues" @@ -50,5 +47,8 @@ }, "files": [ "lib/**/*" - ] + ], + "directories": { + "test": "test" + } }