- Updated all component headers and documentation
- Changed navbar and footer branding
- Updated homepage hero badge
- Modified page title in index.html
- Simplified footer text to 'Built with ❤️'
- Consistent V2 capitalization across all references
85 lines
2.1 KiB
JSON
85 lines
2.1 KiB
JSON
{
|
|
"name": "argon2",
|
|
"version": "0.31.2",
|
|
"description": "An Argon2 library for Node",
|
|
"main": "argon2.js",
|
|
"files": [
|
|
"argon2_node.cpp",
|
|
"argon2.d.ts",
|
|
"binding.gyp",
|
|
"argon2/CHANGELOG.md",
|
|
"argon2/LICENSE",
|
|
"argon2/include/",
|
|
"argon2/src/blake2/",
|
|
"argon2/src/argon2.c",
|
|
"argon2/src/core.c",
|
|
"argon2/src/core.h",
|
|
"argon2/src/encoding.c",
|
|
"argon2/src/encoding.h",
|
|
"argon2/src/opt.c",
|
|
"argon2/src/ref.c",
|
|
"argon2/src/thread.c",
|
|
"argon2/src/thread.h"
|
|
],
|
|
"types": "argon2.d.ts",
|
|
"scripts": {
|
|
"install": "node-pre-gyp install --fallback-to-build",
|
|
"format": "prettier --write \"**/*.{js,json,ts}\"",
|
|
"test": "c8 mocha --timeout 5000 test/test.js",
|
|
"test:ts": "tsc -p . && node test/test-d.js"
|
|
},
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "https://github.com/ranisalt/node-argon2.git"
|
|
},
|
|
"keywords": [
|
|
"argon2",
|
|
"crypto",
|
|
"encryption",
|
|
"hashing",
|
|
"password"
|
|
],
|
|
"author": "Ranieri Althoff <ranisalt+argon2@gmail.com>",
|
|
"license": "MIT",
|
|
"bugs": {
|
|
"url": "https://github.com/ranisalt/node-argon2/issues"
|
|
},
|
|
"homepage": "https://github.com/ranisalt/node-argon2#readme",
|
|
"dependencies": {
|
|
"@mapbox/node-pre-gyp": "^1.0.11",
|
|
"@phc/format": "^1.0.0",
|
|
"node-addon-api": "^7.0.0"
|
|
},
|
|
"devDependencies": {
|
|
"@types/node": "^20.8.10",
|
|
"c8": "^8.0.1",
|
|
"mocha": "^10.2.0",
|
|
"node-gyp": "^10.0.1",
|
|
"prettier": "^3.0.0",
|
|
"typescript": "^5.1.6"
|
|
},
|
|
"binary": {
|
|
"module_name": "argon2",
|
|
"module_path": "./lib/binding/napi-v{napi_build_version}",
|
|
"host": "https://github.com/ranisalt/node-argon2/releases/download/",
|
|
"remote_path": "v{version}",
|
|
"package_name": "{module_name}-v{version}-napi-v{napi_build_version}-{platform}-{arch}-{libc}.tar.gz",
|
|
"napi_versions": [
|
|
3
|
|
]
|
|
},
|
|
"engines": {
|
|
"node": ">=14.0.0"
|
|
},
|
|
"standard": {
|
|
"env": "mocha",
|
|
"ignore": [
|
|
"test/test-d.js"
|
|
]
|
|
},
|
|
"collective": {
|
|
"type": "opencollective",
|
|
"url": "https://opencollective.com/node-argon2"
|
|
}
|
|
}
|