UNPKG

1.27 kBJSONView Raw
1{
2 "name": "pbkdf2",
3 "version": "3.0.6",
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 "browser": "browser.js",
18 "files": [
19 "browser.js",
20 "index.js",
21 "node-shim-async.js",
22 "node-shim.js",
23 "precondition.js"
24 ],
25 "main": "index.js",
26 "repository": {
27 "type": "git",
28 "url": "https://github.com/crypto-browserify/pbkdf2.git"
29 },
30 "scripts": {
31 "prepublish": "npm run test",
32 "coverage": "nyc --check-coverage --branches 100 --functions 100 tape test/*.js",
33 "lint": "standard",
34 "test": "npm run lint && npm run unit",
35 "bundle-test": "browserify test/index.js > test/bundle.js",
36 "unit": "tape test/*.js"
37 },
38 "devDependencies": {
39 "browserify": "*",
40 "nyc": "^6.4.0",
41 "standard": "*",
42 "tape": "^4.5.1"
43 },
44 "dependencies": {
45 "create-hmac": "^1.1.2"
46 },
47 "standard": {
48 "ignore": [
49 "test/bundle.js"
50 ]
51 }
52}