{
  "name": "ant-colony-optimization-algorithm",
  "version": "1.0.0",
  "description": "Ant colony optimization algorithm",
  "keywords": [
    "ACO",
    "Ant Colony Optimization",
    "Machine learning",
    "Algorithm"
  ],
  "main": "dist/index.js",
  "type": "dist/index.d.ts",
  "files": [
    "/dist"
  ],
  "directories": {
    "doc": "docs"
  },
  "scripts": {
    "test": "jest --coverage && npx update-badge coverage/coverage-summary.json",
    "test:watch": "jest --coverage --watchAll",
    "build:removeDist": "rmdir /s /q dist",
    "build:compile": "npx babel src --extensions .ts --out-dir dist --source-maps",
    "build:types": "tsc --project tsconfig.build.json && browserify dist/index.js -o dist/index.min.js",
    "build": "concurrently npm:build:*",
    "watch:compile": "npx babel src --extensions .ts --out-dir dist --source-maps --watch",
    "watch:types": "tsc --project tsconfig.build.json --watch",
    "watch:min": "watchify dist/index.js -o dist/index.min.js -v",
    "watch": "concurrently npm:watch:*"
  },
  "devDependencies": {
    "@babel/cli": "^7.20.7",
    "@babel/core": "^7.20.7",
    "@babel/preset-env": "^7.20.2",
    "@babel/preset-typescript": "^7.18.6",
    "@types/jest": "^29.2.4",
    "@types/node": "^18.11.18",
    "@types/uuid": "^9.0.5",
    "browserify": "^17.0.0",
    "check-code-coverage": "^1.10.4",
    "concurrently": "^7.6.0",
    "jest": "^29.3.1",
    "ts-jest": "^29.0.3",
    "ts-node": "^10.9.1",
    "typescript": "^4.9.4",
    "watchify": "^4.0.0"
  },
  "repository": {
    "type": "git",
    "url": "git+https://github.com/alsk1369854/AntColonyOptimization-ACO.git"
  },
  "bugs": {
    "url": "https://github.com/alsk1369854/AntColonyOptimization-ACO/issues"
  },
  "homepage": "https://github.com/alsk1369854/AntColonyOptimization-ACO#readme",
  "author": "alsk1369854",
  "license": "MIT"
}
