{
  "name": "@zfunction/genetics-js",
  "version": "0.2.9",
  "description": "Genetic and evolutionary algorithms framework for the web",
  "main": "lib/index.js",
  "types": "lib/index.d.ts",
  "scripts": {
    "start": "node lib/genetics.js",
    "prestart": "npm run build",
    "test": "echo hola",
    "test-ci": "jest --config jestconfig.json --coverage && cat ./coverage/lcov.info | coveralls",
    "build": "tsc",
    "format": "prettier --write \"src/**/*.ts\" \"src/**/*.js\"",
    "lint": "echo que tal",
    "prepare": "npm run build",
    "prepublishOnly": "npm test && npm run lint",
    "preversion": "npm run lint",
    "version": "npm run format && git add -A src",
    "postversion": "git push && git push --tags",
    "docs": "typedoc --out docs/ --mode modules --tsconfig tdconfig.json"
  },
  "repository": {
    "type": "git",
    "url": "git+https://github.com/cruzelante098/GeneticsJS.git"
  },
  "keywords": [
    "genetic algorithms",
    "evolutionary algorithms",
    "evolutionary computing",
    "algorithms",
    "optimization",
    "metaheuristic"
  ],
  "author": "Francisco Cruz (cloned from CristianAbrante/GeneticsJS)",
  "license": "MIT",
  "bugs": {
    "url": "https://github.com/cruzelante098/GeneticsJS/issues"
  },
  "homepage": "https://github.com/cruzelante098/GeneticsJS",
  "devDependencies": {
    "@types/jest": "^24.9.1",
    "coveralls": "^3.0.11",
    "jest": "^24.9.0",
    "prettier": "^1.19.1",
    "ts-jest": "^23.10.5",
    "ts-node": "^8.10.2",
    "tslint": "^5.20.1",
    "tslint-config-prettier": "^1.18.0",
    "typedoc": "^0.14.2",
    "typescript": "^3.8.3"
  },
  "files": [
    "lib/**/*"
  ],
  "dependencies": {
    "@types/tmp": "^0.2.0",
    "lodash": "^4.17.15",
    "random-js": "^2.1.0",
    "tmp": "^0.2.1",
    "ts-gaussian": "^1.2.4",
    "xmldom": "^0.3.0"
  }
}
