From 9f906f8f76fcbca9f0c0a412f76eab03b01976cc Mon Sep 17 00:00:00 2001 From: Kirill Fomichev Date: Fri, 18 Mar 2016 14:27:31 +0300 Subject: [PATCH] update package.json --- LICENSE | 2 +- package.json | 25 ++++++++++++++++--------- 2 files changed, 17 insertions(+), 10 deletions(-) diff --git a/LICENSE b/LICENSE index f6d285c..c1dd3c5 100644 --- a/LICENSE +++ b/LICENSE @@ -1,6 +1,6 @@ The MIT License (MIT) -Copyright (c) 2014-2015 Calvin Metcalf & contributors +Copyright (c) 2014-2016 Calvin Metcalf & contributors Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal diff --git a/package.json b/package.json index a025601..930e899 100644 --- a/package.json +++ b/package.json @@ -2,23 +2,30 @@ "name": "browserify-rsa", "version": "4.0.1", "description": "RSA for browserify", + "bugs": { + "url": "https://github.com/crypto-browserify/browserify-rsa/issues" + }, + "license": "MIT", + "files": [ + "index.js" + ], "main": "index.js", + "repository": { + "type": "git", + "url": "https://github.com:crypto-browserify/browserify-rsa.git" + }, "scripts": { - "test": "node test.js | tspec" + "lint": "standard", + "test": "npm run lint && npm run unit", + "unit": "tape test/*.js" }, - "author": "", - "license": "MIT", "dependencies": { "bn.js": "^4.1.0", "randombytes": "^2.0.1" }, - "repository": { - "type": "git", - "url": "git@github.com:crypto-browserify/browserify-rsa.git" - }, "devDependencies": { "parse-asn1": "^5.0.0", - "tap-spec": "^2.1.2", - "tape": "^3.0.3" + "standard": "^6.0.8", + "tape": "^4.5.1" } }