generate-password-ts
Version:
Easy library for generating unique passwords. Compatible with node.js and browsers. Forked from original Node.js version.
58 lines (57 loc) • 1.99 kB
JSON
{
"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.4",
"@types/node": "18.17.13",
"@types/underscore": "1.11.9",
"@typescript-eslint/eslint-plugin": "6.5.0",
"@typescript-eslint/parser": "6.5.0",
"can-npm-publish": "1.3.6",
"cross-env": "7.0.3",
"eslint": "8.48.0",
"jest": "29.6.4",
"jest-environment-jsdom": "29.6.4",
"ts-jest": "29.1.1",
"ts-loader": "9.4.4",
"typescript": "5.2.2",
"underscore": "1.13.6",
"webpack": "5.88.2",
"webpack-cli": "5.1.4"
},
"dependencies": {
"js-crypto-random": "1.0.4"
}
}