-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
33 lines (33 loc) · 913 Bytes
/
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
{
"name": "scrypt-kdf",
"description": "Scrypt Key Derivation Function",
"keywords": [ "crypto", "scrypt", "kdf", "password", "hash", "login", "authenticate", "verify" ],
"author": "Chris Veness",
"repository": {
"type": "git",
"url": "https://github.com/chrisveness/scrypt-kdf"
},
"version": "3.0.0",
"license": "MIT",
"main": "scrypt.js",
"type": "module",
"types": "scrypt.d.ts",
"engines": {
"node": ">=18.0.0"
},
"scripts": {
"test": "npm run test-node && npm run test-deno",
"test-node": "node --test test/tests-node.js",
"test-deno": "deno test -NES test/tests-deno.js",
"lint": "eslint scrypt.js test/tests-*.js",
"cover": "c8 npm test"
},
"devDependencies": {
"@babel/eslint-parser": "^7",
"@babel/plugin-syntax-import-attributes": "^7",
"@eslint/js": "^9",
"@types/node": "^22",
"c8": "^10",
"globals": "^15"
}
}