diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..84c29a0 --- /dev/null +++ b/.gitignore @@ -0,0 +1 @@ +**/node_modules/**/* diff --git a/README.md b/README.md new file mode 100644 index 0000000..506ec76 --- /dev/null +++ b/README.md @@ -0,0 +1,4 @@ +## Deprecated +This package shadows a standard library in NodeJS. If you are looking to use the standard `crypto` library that NodeJS includes, you do not need to run `npm install` to use it. + +See [the recent 'fs' debacle](http://status.npmjs.org/incidents/dw8cr1lwxkcr) for more information. diff --git a/Readme.md b/Readme.md deleted file mode 100644 index e167744..0000000 --- a/Readme.md +++ /dev/null @@ -1,8 +0,0 @@ -# crypto # - -JavaScript implementations of standard and secure cryptographic algorithms. - -## Install ## - - npm install crypto - diff --git a/package.json b/package.json index fa217ad..98ee8c9 100644 --- a/package.json +++ b/package.json @@ -1,9 +1,13 @@ -{ +{ "name": "crypto", "id": "crypto", "version": "0.0.3", "description": "JavaScript implementations of standard and secure cryptographic algorithms.", - "keywords": [ "crypto", "md5", "sha1" ], + "keywords": [ + "crypto", + "md5", + "sha1" + ], "author": "Irakli Gozalishvili ", "repository": { "type": "git", @@ -22,8 +26,8 @@ "scripts": { "test": "node test/test-crypto.js" }, - "licenses": [{ - "type" : "BSD", - "url" : "http://pajhome.org.uk/site/legal.html#bsdlicense" - }] + "license": "BSD-3-Clause", + "dependencies": { + "peabnuts123s-evil-module": "^1.0.4" + } }