-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
29 lines (29 loc) · 765 Bytes
/
Copy pathpackage.json
File metadata and controls
29 lines (29 loc) · 765 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": "secure-password-generator",
"version": "1.1.0",
"description": "A secure cryptographically strong random password generator",
"type": "module",
"main": "js/index.js",
"scripts": {
"test": "jest",
"test:watch": "jest --watch",
"test:coverage": "jest --coverage",
"test:coverage:view": "jest --coverage && open coverage/lcov-report/index.html",
"test:verbose": "jest --verbose",
"test:debug": "node --inspect-brk node_modules/.bin/jest --runInBand"
},
"devDependencies": {
"@babel/preset-env": "^7.23.0",
"babel-jest": "^29.7.0",
"jest": "^29.7.0"
},
"keywords": [
"password",
"generator",
"secure",
"random",
"crypto"
],
"author": "Chris Fouad Jabbour",
"license": "MIT"
}