-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
48 lines (48 loc) · 1.21 KB
/
Copy pathpackage.json
File metadata and controls
48 lines (48 loc) · 1.21 KB
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
44
45
46
47
48
{
"name": "generate-strings",
"author": "Lucas Bittencourt <lucasgdbittencourt@gmail.com> (https://lucasbittencourt.dev/)",
"version": "3.0.0",
"license": "MIT",
"description": "Generate random strings, strings with mask and passwords with password-strength tester",
"scripts": {
"build": "webpack && tsc",
"test": "vitest run",
"check": "biome check --write .",
"lint": "biome lint --write .",
"format": "biome format --write ."
},
"devDependencies": {
"@biomejs/biome": "1.8.3",
"@swc/core": "^1.7.2",
"@types/node": "^20.14.12",
"core-js": "^3.37.1",
"swc-loader": "^0.2.6",
"typescript": "^5.5.4",
"vitest": "^2.0.4",
"webpack": "^5.93.0",
"webpack-cli": "^5.1.4"
},
"repository": {
"type": "git",
"url": "git+https://github.com/lucasgdb/generate-strings.git"
},
"keywords": [
"security",
"passwords",
"strings",
"mask",
"password-strength",
"random",
"front-end",
"backend",
"generate",
"string-manipulation"
],
"bugs": {
"url": "https://github.com/lucasgdb/generate-strings/issues"
},
"homepage": "https://github.com/lucasgdb/generate-strings#readme",
"engines": {
"node": ">=20.16"
}
}