-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
43 lines (43 loc) · 1.02 KB
/
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
42
43
{
"name": "random-password-typescript",
"version": "1.1.0",
"description": "A typesafe, secure password generator.",
"main": "src/password.ts",
"type": "module",
"scripts": {
"start": "ts-node src/index.ts",
"build": "tsc",
"lint": "biome lint",
"format": "biome format",
"test": "jest --testEnvironment=node --verbose",
"prebuild": "npm run lint",
"pretest": "npm run lint"
},
"keywords": [
"typescript",
"password",
"generator",
"type-safe",
"secure",
"CSPRNG",
"random",
"npm"
],
"author": "Bruno de Almeida Aseff",
"license": "MIT",
"devDependencies": {
"@types/jest": "^27.5.2",
"@types/node": "^22.7.4",
"@typescript-eslint/eslint-plugin": "^5.0.0",
"@typescript-eslint/parser": "^5.0.0",
"biome": "^0.3.3",
"eslint": "^8.0.0",
"jest": "^29.7.0",
"jest-circus": "^27.0.0",
"jest-environment-node": "^29.7.0",
"ts-jest": "^29.2.5",
"tsconfig-paths": "^4.2.0",
"tsx": "^4.19.1",
"typescript": "^4.0.0"
}
}