fantasy-name-generator
Version:
An easy to use race-based fantasy name generator. With TypeScript!
78 lines (77 loc) • 1.92 kB
JSON
{
"name": "fantasy-name-generator",
"version": "2.0.0",
"description": "An easy to use race-based fantasy name generator. With TypeScript!",
"keywords": [
"fantasy",
"name",
"generator",
"name generator"
],
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"build": "run-s compile:*",
"commit": "run-s build add-dist commitizen",
"add-dist": "git add dist/*",
"commitizen": "git-cz",
"compile:typescript": "rm -rf dist && tsc",
"test": "jest"
},
"bin": "index.js",
"repository": {
"type": "git",
"url": "git+https://github.com/fentech/fantasy-name-generator.git"
},
"author": "Joe Fensler <joe.fensler@gmail.com>",
"license": "ISC",
"bugs": {
"url": "https://github.com/fentech/fantasy-name-generator/issues"
},
"homepage": "https://github.com/fentech/fantasy-name-generator#readme",
"dependencies": {
"commander": "^2.20.0",
"lodash.capitalize": "^4.2.1",
"lodash.endswith": "^4.2.1",
"lodash.sample": "^4.2.1",
"lodash.startcase": "^4.4.0"
},
"devDependencies": {
"@types/enzyme": "^3.9.2",
"@types/jest": "^24.0.13",
"@types/lodash": "^4.14.129",
"commitizen": "^3.1.1",
"cz-conventional-changelog": "^2.1.0",
"enzyme": "^3.9.0",
"husky": ">=1",
"jest": "^24.8.0",
"lint-staged": ">=8",
"npm-run-all": "^4.1.5",
"prettier": "^1.17.1",
"ts-jest": "^24.0.2",
"tslint": "^5.16.0",
"tslint-config-prettier": "^1.18.0",
"tslint-plugin-prettier": "^2.0.1",
"typescript": "^3.4.5"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{ts}": [
"tslint -c tslint.json --fix",
"git add"
],
"*.{css,json,md}": [
"prettier --write",
"git add"
]
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
}
}