-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
41 lines (41 loc) · 859 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": "hashword",
"description": "A pure JavaScript password hashing framework.",
"version": "1.0.0",
"author": "brahma-dev",
"contributors": [],
"dependencies": {
"bcrypt": "^5.0.0"
},
"scripts": {
"start": "npm run build",
"build": "npm run clean && npm run lint && npm run compile",
"clean": "rimraf dist/",
"compile": "tsc",
"lint": "eslint . --ext .ts --fix"
},
"keywords": [
"auth",
"password",
"hashing",
"crypto",
"bcrypt"
],
"main": "dist/index",
"engines": {
"node": ">= 10.0.0"
},
"repository": {
"type": "git",
"url": "https://github.com/brahma-dev/hashword.git"
},
"license": "MIT",
"devDependencies": {
"@types/bcrypt": "^3.0.0",
"@typescript-eslint/eslint-plugin": "^3.6.1",
"@typescript-eslint/parser": "^3.6.1",
"eslint": "^7.4.0",
"rimraf": "^3.0.2",
"typescript": "^3.9.7"
}
}