-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathpackage.json
77 lines (77 loc) · 2.26 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
{
"name": "mfkdf",
"version": "1.2.1",
"description": "JavaScript Implementation of a Multi-Factor Key Derivation Function (MFKDF)",
"main": "src/index.js",
"scripts": {
"test": "npm run style && npm run coverage",
"style": "standard ./src --fix && standard ./test --fix",
"unit": "mocha",
"coverage": "nyc --report-dir=\"./site/nyc\" --reporter=text --reporter=html mocha --branches 100",
"version": "npm run docs && git add site && npm run build && git add mfkdf.js && git add mfkdf.min.js",
"release": "np --branch main --no-cleanup",
"postpublish": "npm run deploy",
"deploy": "gh-pages -d site",
"docs": "jsdoc src -c .jsdoc.json -u tutorials",
"build": "npm run browserify && npm run minify",
"browserify": "webpack",
"minify": "terser --compress --comments false --module mfkdf.js --mangle -o mfkdf.min.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/multifactor/MFKDF.git"
},
"author": "Vivek Nair (https://nair.me) <[email protected]>",
"license": "CC-BY-NC-SA-4.0",
"bugs": {
"url": "https://github.com/multifactor/MFKDF/issues"
},
"files": [
"src/**",
"README.md",
"mfkdf.js",
"mfkdf.min.js"
],
"homepage": "https://github.com/multifactor/MFKDF#readme",
"devDependencies": {
"base64-loader": "^1.0.0",
"buffer": "^6.0.3",
"chai": "^4.3.4",
"chai-as-promised": "^7.1.1",
"crypto-browserify": "^3.12.0",
"docdash": "^1.2.0",
"gh-pages": "^3.2.3",
"jsdoc": "^3.6.7",
"mocha": "^9.1.3",
"mochawesome": "^7.1.3",
"np": "^7.6.0",
"nyc": "^15.1.0",
"process": "^0.11.10",
"standard": "^16.0.4",
"stream-browserify": "^3.0.0",
"terser": "^5.10.0",
"url": "^0.11.0",
"util": "^0.12.4",
"vm-browserify": "^1.1.2",
"webpack": "^5.65.0",
"webpack-cli": "^4.9.1"
},
"dependencies": {
"@panva/hkdf": "^1.0.1",
"ajv": "^8.11.0",
"argon2-browser": "^1.18.0",
"bcryptjs": "^2.4.3",
"buffer-xor": "^2.0.2",
"human-crypto-keys": "^0.1.4",
"pbkdf2": "^3.1.2",
"random-number-csprng": "^1.0.2",
"scrypt-js": "^3.0.1",
"secrets.js-34r7h": "^2.0.1",
"speakeasy": "^2.0.0",
"uuid": "^8.3.2",
"zxcvbn": "^4.4.2"
},
"overrides": {
"node-forge": "^1.3.0"
}
}