-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
41 lines (41 loc) · 942 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
34
35
36
37
38
39
40
41
{
"name": "p4ssw0rd",
"version": "1.0.7",
"description": "Hash passwords with SHA-256 + bcrypt",
"main": "dist/src/index.js",
"types": "dist/src/index.d.ts",
"scripts": {
"test": "(mocha -r ts-node/register test/*.ts; mocha dist/test/*.js)",
"build": "tsc"
},
"repository": {
"type": "git",
"url": "github:Munkkeli/p4ssw0rd"
},
"author": "Tuomas Pöyry <tuomas@munkkeli.io> (https://tuomas.poyry.me/)",
"license": "MIT",
"bugs": {
"url": "https://github.com/Munkkeli/p4ssw0rd/issues"
},
"keywords": [
"nodejs",
"typescript",
"bcrypt",
"sha256",
"security",
"password"
],
"dependencies": {
"@types/bcryptjs": "~2.4.2",
"bcryptjs": "~2.4.3"
},
"devDependencies": {
"@types/chai": "^4.1.7",
"@types/mocha": "^5.2.7",
"@types/node": "^12.6.4",
"chai": "^4.2.0",
"mocha": "^8.1.3",
"ts-node": "^8.3.0",
"typescript": "^3.5.3"
}
}