weighted-markov-generator
Version:
Quick and simple to use weighted markov text generator, seed with any text
38 lines (37 loc) • 937 B
JSON
{
"name": "weighted-markov-generator",
"version": "1.0.1",
"description": "Quick and simple to use weighted markov text generator, seed with any text",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"test": "mocha --require ts-node/register 'test/**/*.ts'",
"build": "tsc",
"clean": "if [ -d 'dist' ]; then rm -rf dist; fi",
"prepare": "npm run clean && npm run build",
"prepublishOnly": "npm test"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Aperocky/weighted-markov-generator.git"
},
"keywords": [
"markov",
"markov-chain",
"weighted-markov",
"text-generation"
],
"author": "Rocky Li",
"license": "ISC",
"devDependencies": {
"@types/chai": "^4.3.3",
"@types/mocha": "^9.1.1",
"chai": "^4.3.6",
"mocha": "^10.0.0",
"ts-node": "^10.9.1",
"typescript": "^4.7.4"
},
"files": [
"dist/**/*"
]
}