-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
45 lines (45 loc) · 1.04 KB
/
Copy pathpackage.json
File metadata and controls
45 lines (45 loc) · 1.04 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
{
"name": "bcrypt-perf",
"description": "Performance estimation between NAN and N-API implementation",
"keywords": [
"bcrypt",
"password",
"auth",
"authentication",
"encryption",
"crypt",
"crypto",
"napi",
"nan"
],
"main": "./index.js",
"version": "1.0.0",
"author": "Nicola Del Gobbo (https://github.com/NickNaso)",
"engines": {
"node": ">= 4.0.0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/NickNaso/bcrypt-perf.git"
},
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/NickNaso/bcrypt-perf/issues"
},
"scripts": {
"hps": "node hash-password-sync",
"hpa": "node hash-password-async",
"cps": "node compare-password-sync",
"cpa": "node compare-password-async"
},
"dependencies": {
"bcrypt": "^1.0.3",
"bcrypt-napi": "https://github.com/NickNaso/bcrypt-napi.git",
"body-parser": "^1.18.2",
"csv": "^2.0.0",
"errorhandler": "^1.5.0",
"express": "^4.16.2",
"verror": "^1.10.0"
},
"devDependencies": {}
}