This repository was archived by the owner on Sep 28, 2025. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
67 lines (67 loc) · 1.96 KB
/
package.json
File metadata and controls
67 lines (67 loc) · 1.96 KB
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
{
"name": "mfchf",
"version": "0.2.0",
"description": "JavaScript Implementation of a Multi-Factor Credential Hashing Function (MFCHF)",
"main": "src/index.js",
"engines": {
"node": ">= 16"
},
"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 mfchf.js && git add mfchf.min.js",
"release": "np --branch main --no-cleanup",
"postpublish": "npm run deploy",
"deploy": "gh-pages -d site",
"docs": "jsdoc src -c .jsdoc.json",
"build": "npm run browserify && npm run minify",
"browserify": "webpack",
"minify": "terser --compress --comments false --module mfchf.js --mangle -o mfchf.min.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/multifactor/MFCHF.git"
},
"author": "Vivek Nair (https://nair.me) <vivek@nair.me>",
"license": "BSD-3-Clause-Clear",
"bugs": {
"url": "https://github.com/multifactor/MFCHF/issues"
},
"files": [
"site/schema/**",
"src/**",
"README.md",
"mfchf.js",
"mfchf.min.js"
],
"homepage": "https://github.com/multifactor/MFCHF#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": "^2.0.1",
"gh-pages": "^3.2.3",
"jsdoc": "^4.0.2",
"mocha": "^10.2.0",
"mochawesome": "^7.1.3",
"np": "^8.0.4",
"nyc": "^15.1.0",
"process": "^0.11.10",
"standard": "^17.0.0",
"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": {
"hash-wasm": "^4.10.0",
"speakeasy": "^2.0.0"
}
}