forked from brendanashworth/generate-password
-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
57 lines (57 loc) · 1.94 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
{
"name": "generate-password-ts",
"version": "1.6.5",
"description": "Easy library for generating unique passwords. Compatible with node.js and browsers. Forked from original Node.js version.",
"main": "dist/index.js",
"scripts": {
"flow:version": "npm version --no-git-tag-version",
"release:start": "./node_modules/.bin/can-npm-publish --vorbose && git flow release start v$npm_package_version",
"release:finish": "git flow release finish v$npm_package_version",
"release:push": "git push --all && git push origin v$npm_package_version",
"test": "yarn jest:node",
"jest:node": "jest -c ./jest.config.node.js",
"jest:web": "jest -c ./jest.config.web.js",
"tsc": "tsc --build ./tsconfig.json",
"webpack": "webpack --mode development --config webpack.config.js",
"webpack:prod": "webpack --mode production --config webpack.config.js",
"build": "rm -rf ./dist && yarn tsc && yarn webpack:prod",
"cleanup": "rm -rf ./dist coverage ./node_modules"
},
"repository": {
"type": "git",
"url": "https://github.com/junkurihara/generate-password"
},
"keywords": [
"generate",
"password",
"generator",
"unique"
],
"author": "Brendan Ashworth -> Jun Kurihara",
"license": "MIT",
"bugs": {
"url": "https://github.com/junkurihara/generate-password/issues"
},
"homepage": "https://github.com/junkurihara/generate-password",
"devDependencies": {
"@types/jest": "29.5.14",
"@types/node": "22.10.0",
"@types/underscore": "1.13.0",
"@typescript-eslint/eslint-plugin": "8.16.0",
"@typescript-eslint/parser": "8.16.0",
"can-npm-publish": "1.3.6",
"cross-env": "7.0.3",
"eslint": "9.15.0",
"jest": "29.7.0",
"jest-environment-jsdom": "29.7.0",
"ts-jest": "29.2.5",
"ts-loader": "9.5.1",
"typescript": "5.7.2",
"underscore": "1.13.7",
"webpack": "5.96.1",
"webpack-cli": "5.1.4"
},
"dependencies": {
"js-crypto-random": "1.0.5"
}
}