-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
77 lines (77 loc) · 1.83 KB
/
package.json
File metadata and controls
77 lines (77 loc) · 1.83 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
68
69
70
71
72
73
74
75
76
77
{
"name": "bcrypt-deterministic",
"version": "0.0.4",
"description": "A deterministic bcrypt library for NodeJS.",
"keywords": [
"bcrypt",
"password",
"auth",
"authentication",
"encryption",
"crypt",
"crypto",
"deterministic",
"consistent",
"stable",
"repeatable",
"salt",
"pepper",
"hash",
"scrypt",
"hashed",
"hashing"
],
"author": "Tomas Savigliano",
"license": "MIT",
"main": "./dist/index.js",
"files": [
"/dist",
"README.md",
"binding.gyp",
"/lib",
"/bindings"
],
"scripts": {
"build": "npx ttsc",
"start": "npm run build",
"test": "npm run build && mocha --timeout 0 -r ts-node/register tests/**/*.test.ts",
"prettify": "npx prettier --write '**/*.ts'",
"install": "node-pre-gyp install --fallback-to-build"
},
"husky": {
"hooks": {
"pre-commit": "pretty-quick --staged && npm run build"
}
},
"dependencies": {
"node-pre-gyp": "0.14.0",
"node-addon-api": "^3.0.0"
},
"devDependencies": {
"@types/chai": "^4.2.11",
"@types/mocha": "^7.0.2",
"@types/node": "12.7.5",
"chai": "4.2.0",
"husky": "4.2.5",
"mocha": "7.1.2",
"prettier": "2.0.5",
"pretty-quick": "2.0.1",
"ts-node": "^8.10.1",
"tslint": "5.20.1",
"tslint-config-prettier": "1.18.0",
"tslint-plugin-prettier": "2.0.1",
"ttypescript": "^1.5.10",
"typescript": "3.9.2",
"typescript-transform-paths": "^1.1.14"
},
"binary": {
"module_name": "bcrypt_lib",
"module_path": "./lib/binding/napi-v{napi_build_version}",
"package_name": "{module_name}-v{version}-napi-v{napi_build_version}-{platform}-{arch}-{libc}.tar.gz",
"host": "https://github.com/ralusek/bcrypt-deterministic/releases/download/",
"remote_path": "v{version}",
"napi_versions": [
3
]
}
}