-
-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
156 lines (156 loc) · 5.34 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
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
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
{
"author": "Sebastien Rousseau <hello@password-generator.pro> (https://github.com/sebastienrousseau/password-generator)",
"autoupdate": {
"fileMap": [
{
"basePath": "dist",
"files": [
"**/*"
]
}
],
"source": "git",
"target": "git://github.com/sebastienrousseau/password-generator.git"
},
"bin": {
"password-generator": "index.js"
},
"bugs": {
"url": "https://github.com/sebastienrousseau/password-generator/issues"
},
"description": "A fast, simple and powerful open-source utility tool for generating strong, unique and random passwords.",
"devDependencies": {
"@babel/cli": "^7.23.0",
"@babel/core": "^7.23.3",
"@babel/eslint-parser": "^7.23.3",
"@babel/preset-env": "^7.23.3",
"@babel/preset-typescript": "^7.23.3",
"@babel/register": "^7.22.15",
"babel-plugin-istanbul": "^6.1.1",
"c8": "^8.0.1",
"chai": "^5.0.0",
"clipboardy": "^4.0.0",
"commander": "^11.1.0",
"eslint": "^8.53.0",
"eslint-plugin-import": "^2.29.0",
"eslint-plugin-prettier": "^5.0.1",
"filesizes": "^0.1.2",
"jest": "^29.7.0",
"jsdoc": "^4.0.2",
"jshint": "^2.13.6",
"mkdirp": "^3.0.1",
"mocha": "^10.2.0",
"prettier": "3.1.1",
"remark-cli": "^12.0.0",
"remark-footnotes": "^4.0.1",
"remark-preset-lint-consistent": "^5.1.2",
"remark-preset-lint-markdown-style-guide": "^5.1.3",
"remark-preset-lint-recommended": "^6.1.3",
"rimraf": "^5.0.5"
},
"directories": {
"bin": "./bin",
"src": "./src",
"test": "./test"
},
"engines": {
"node": "^10.19.0 || ^14.13.1 || >=16.0.0"
},
"files": [
"/COPYRIGHT",
"/index.js",
"/Makefile",
"/src"
],
"funding": [
{
"type": "github",
"url": "https://github.com/sponsors/sebastienrousseau"
},
{
"type": "paypal",
"url": "https://paypal.me/wwdseb"
}
],
"homepage": "https://password-generator.pro",
"keywords": [
"base64",
"complex",
"crypto",
"cryptography",
"dictionary",
"entropy",
"encryption",
"memorable",
"mit-license",
"open-source",
"openssl",
"pass",
"passgen",
"passphrase",
"password generator",
"password-generator",
"preprocessor",
"random",
"secure",
"security"
],
"license": "MIT",
"license_URI": "http://www.opensource.org/licenses/mit-license.php",
"lockfileVersion": 1,
"main": "index.js",
"name": "@sebastienrousseau/password-generator",
"publishConfig": {
"access": "public",
"registry": "https://npm.pkg.github.com"
},
"repository": {
"type": "git",
"url": "git+https://github.com/sebastienrousseau/password-generator.git"
},
"rules": {
"node/no-unpublished-import": [
"error",
{
"convertPath": [
{
"include": [
"src/**/*.js"
],
"replace": [
"^src/(.+)$",
"lib/$1"
]
}
]
}
]
},
"scripts": {
"build": "pnpm run lint:fix && pnpm run lint:markdown && pnpm run build:password:generator && cat ./package.json | grep -v '\"private\":' > dist/package.json && pnpm pack ./dist",
"build:password:generator": "npm run clean:dist && npm run create:directory && npm run create:docs && npm run copy:index && npm run copy:src && npm run copy:readme && npm run copy:license && npm run copy:makefile && npm run copy:copyright && npm run filesize:distribution",
"clean": "rimraf .nyc_output coverage",
"clean:dist": "rimraf \"dist/\"",
"copy:copyright": "cp COPYRIGHT dist/",
"copy:index": "cp index.js dist/",
"copy:license": "cp LICENSE dist/",
"copy:makefile": "cp Makefile dist/",
"copy:readme": "cp README.md dist/",
"copy:src": "cp -R ./src dist/src",
"coverage": "pnpm run clean && c8 mocha \"test/*.js\" \"./test/**/*.js\" && exit",
"create:directory": "mkdirp ./dist",
"create:docs": "jsdoc -c ./jsdoc.json",
"filesize:distribution": "filesizes dist/ > dist/Report.txt",
"format": "prettier --write src/**/*.js",
"lint": "eslint --config=.eslintrc.json \"./*.js\" \"./src/**/*.js\"",
"lint:fix": "pnpm run lint --fix",
"lint:markdown": "remark \"./*.md\" \"./src/**/*.md\" \"./.github/**/*.md\"",
"release:prepare": "pnpm publish $(node -p \"p=require('./package.json');p.name+'-'+p.version+'.tgz'\") --no-git-checks",
"release:publish": "pnpm publish --access public --ignore-scripts --@OWNER:registry='https://registry.npmjs.org'",
"release": "pnpm run build && pnpm run release:prepare && pnpm run release:publish",
"start": "node index.js",
"test": "pnpm run clean && c8 mocha"
},
"type": "module",
"version": "1.1.3"
}