-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
75 lines (75 loc) · 2.06 KB
/
package.json
File metadata and controls
75 lines (75 loc) · 2.06 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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
{
"name": "@password-generator/cli",
"version": "1.0.2",
"description": "CLI to generate good passwords",
"private": false,
"repository": {
"type": "git",
"url": "git+https://github.com/password-generator/password-generator-cli.git"
},
"keywords": [
"cli",
"generate",
"password",
"password-generator",
"typescript",
"security-tools"
],
"author": "Mikael Rolim de Aquino <mikarg9@gmail.com>",
"bugs": {
"url": "https://github.com/password-generator/password-generator-cli/issues"
},
"homepage": "https://github.com/password-generator/password-generator-cli#readme",
"bin": {
"password-generator-cli": "bin/password-generator-cli"
},
"scripts": {
"format": "eslint src --ext ts",
"remove-old-dist": "rimraf dist",
"compile-dist": "tsc",
"dist": "npm run remove-old-dist && npm run compile-dist"
},
"files": [
"tsconfig.json",
"dist",
"LICENSE",
"README.md",
"bin"
],
"license": "MIT",
"dependencies": {
"@password-generator/package": "^2.1.0",
"cfonts": "^2.8.6",
"gluegun": "^4.4.0",
"password-generator-package": "^1.3.5",
"yargs": "^15.4.1"
},
"devDependencies": {
"@commitlint/cli": "^9.1.2",
"@commitlint/config-conventional": "^9.1.2",
"@lenne.tech/cli-plugin-helper": "^0.0.8",
"@types/node": "^12.7.11",
"@types/yargs": "^15.0.5",
"@typescript-eslint/eslint-plugin": "^3.10.1",
"@typescript-eslint/parser": "^3.10.1",
"commitizen": "^4.2.1",
"cz-conventional-changelog": "^3.3.0",
"eslint": "^7.7.0",
"eslint-config-prettier": "^6.11.0",
"eslint-config-standard": "^14.1.1",
"eslint-plugin-import": "^2.22.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^3.1.4",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-standard": "^4.0.1",
"find-file-up": "^2.0.1",
"git-cz": "^4.7.1",
"husky": "^4.2.5",
"lint-staged": "^10.2.13",
"prettier": "^2.1.1",
"rimraf": "^3.0.2",
"standard": "^14.3.4",
"ts-node": "^8.4.1",
"typescript": "^3.6.3"
}
}