{
  "name": "@mnemonica/topologica",
  "version": "0.0.7",
  "description": "simple topology scrapper for mnemonica",
  "files": [
    "README.md",
    "LICENSE",
    "lib"
  ],
  "directories": {
    "lib": "lib/"
  },
  "main": "lib/index.js",
  "exports": {
    ".": "./lib/index.js",
    "./module": {
      "import": "./lib/index.js",
      "browser": "./lib/index.js",
      "require": "./lib/index.js",
      "default": "./lib/index.js"
    }
  },
  "scripts": {
    "buildonly": "rm -rf ./lib && npx tsc --pretty && npm run lint",
    "build": "rm -rf ./lib && npx tsc --pretty && npm run lint",
    "lint": "npx eslint --fix --ignore-path .gitignore ./lib",
    "lint:test": "npx eslint --fix --ignore-path .gitignore ./test",
    "test": "npm run build && mocha test/index.js",
    "test:cov": "npm run build && nyc --reporter=lcov mocha --ui bdd --reporter spec ./test/index.js",
    "debug": "npx mocha --reporter spec --inspect-brk test/index",
    "report-coverage": "cat coverage/lcov.info | coveralls",
    "ts:lint": "npx tslint --fix --ignore-path .gitignore ./src"
  },
  "repository": {
    "type": "git",
    "url": "git+https://github.com/mythographica/topologica.git"
  },
  "keywords": [
    "JavaScript",
    "Inheritance",
    "mnemonica",
    "topology",
    "DI"
  ],
  "author": "went.out@gmail.com",
  "license": "MIT",
  "bugs": {
    "url": "https://github.com/mythographica/topologica/issues"
  },
  "lint-staged": {
    "*.js": "eslint --fix --ignore-path .gitignore"
  },
  "homepage": "https://github.com/mythographica/topologica#readme",
  "devDependencies": {
    "@types/chai": "^4.2.18",
    "@types/mocha": "^7.0.2",
    "@types/node": "^14.14.44",
    "@typescript-eslint/eslint-plugin": "^2.33.0",
    "@typescript-eslint/parser": "^2.33.0",
    "chai": "^4.3.4",
    "coveralls": "^3.1.0",
    "eslint": "^6.8.0",
    "eslint-plugin-mocha": "^5.2.0",
    "eslint-plugin-no-arrow-this": "^1.2.0",
    "eslint-plugin-prettier": "^3.4.0",
    "husky": "^3.0.5",
    "lint-staged": "^9.2.5",
    "mocha": "^8.4.0",
    "mocha-lcov-reporter": "^1.3.0",
    "nyc": "^14.1.1",
    "ts-node": "^8.10.2",
    "tslint": "^6.1.2",
    "typescript": "^3.9.9"
  },
  "husky": {
    "hooks": {
      "pre-commit": "lint-staged"
    }
  }
}
