UNPKG

1.22 kBJSONView Raw
1{
2 "name": "pbkdf2",
3 "version": "3.0.5",
4 "description": "This library provides the functionality of PBKDF2 with the ability to use any supported hashing algorithm returned from crypto.getHashes()",
5 "keywords": [
6 "pbkdf2",
7 "kdf",
8 "salt",
9 "hash"
10 ],
11 "homepage": "https://github.com/crypto-browserify/pbkdf2",
12 "bugs": {
13 "url": "https://github.com/crypto-browserify/pbkdf2/issues"
14 },
15 "license": "MIT",
16 "author": "Daniel Cousens",
17 "files": [
18 "browser.js",
19 "index.js",
20 "node-shim-async.js",
21 "node-shim.js",
22 "precondition.js"
23 ],
24 "main": "index.js",
25 "repository": {
26 "type": "git",
27 "url": "https://github.com/crypto-browserify/pbkdf2.git"
28 },
29 "scripts": {
30 "prepublish": "npm run test",
31 "coverage": "nyc --check-coverage --branches 100 --functions 100 tape test/*.js",
32 "lint": "standard",
33 "test": "npm run lint && npm run unit",
34 "bundle-test": "browserify test/index.js > test/bundle.js",
35 "unit": "tape test/*.js"
36 },
37 "devDependencies": {
38 "nyc": "^6.4.0",
39 "standard": "*",
40 "tape": "^4.5.1"
41 },
42 "dependencies": {
43 "create-hmac": "^1.1.2"
44 },
45 "standard": {
46 "ignore": [
47 "test/bundle.js"
48 ]
49 }
50}