-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
29 lines (29 loc) · 744 Bytes
/
Copy pathpackage.json
File metadata and controls
29 lines (29 loc) · 744 Bytes
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
{
"name": "hashed-password",
"version": "1.0.5",
"description": "A simple TS package used for hashed password generation and verification",
"main": "lib",
"license": "MIT",
"author": "sonalan",
"repository": {
"type": "git",
"url": "https://github.com/sonalan/hashed-password.git"
},
"scripts": {
"build": "tsc",
"lint": "eslint src/. --etx ts",
"test": "jest",
"doc": "tsc && jsdoc -c ./.jsdoc.json"
},
"devDependencies": {
"@types/jest": "^27.0.3",
"@types/node": "^17.0.5",
"eslint": "^8.5.0",
"eslint-config-airbnb-typescript-prettier": "^5.0.0",
"jest": "^27.4.5",
"jsdoc": "^3.6.7",
"prettier": "^2.5.1",
"ts-jest": "^27.1.2",
"typescript": "^4.5.4"
}
}