forked from ranisalt/node-argon2
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
77 lines (77 loc) · 1.84 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": "argon2",
"version": "0.25.1",
"description": "An Argon2 library for Node",
"main": "argon2.js",
"files": [
"src/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",
"lint": "standard --verbose",
"test": "nyc mocha 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": {
"@phc/format": "^0.5.0",
"node-addon-api": "^2.0.0",
"node-pre-gyp": "^0.14.0"
},
"devDependencies": {
"@types/node": "^13.1.0",
"coveralls": "^3.0.3",
"mocha": "^7.0.1",
"nyc": "^15.0.0",
"standard": "^14.0.0",
"typescript": "^3.4.4"
},
"binary": {
"module_name": "argon2",
"module_path": "./lib/binding/",
"package_name": "{module_name}-v{version}-{node_abi}-{platform}-{arch}-{libc}.tar.gz",
"host": "https://github.com/ranisalt/node-argon2/releases/download/",
"remote_path": "v{version}"
},
"engines": {
"node": ">=8.0.0"
},
"standard": {
"env": "mocha",
"ignore": [
"test/test-d.js"
]
}
}