{
  "name": "@mnemonica/topologica",
  "version": "0.1.0",
  "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/coverage.js",
    "test:cov": "npm run build && nyc mocha --ui bdd --reporter spec test/index.js test/coverage.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",
  "dependencies": {
    "mnemonica": "^1.2.5"
  },
  "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.3.20",
    "@types/mocha": "^7.0.2",
    "@types/node": "^14.18.63",
    "@typescript-eslint/eslint-plugin": "^2.34.0",
    "@typescript-eslint/parser": "^2.34.0",
    "chai": "^4.5.0",
    "coveralls": "^3.1.1",
    "eslint": "^6.8.0",
    "eslint-plugin-mocha": "^5.3.0",
    "eslint-plugin-no-arrow-this": "^1.2.0",
    "eslint-plugin-prettier": "^3.4.1",
    "husky": "^3.1.0",
    "lint-staged": "^9.5.0",
    "mocha": "^8.4.0",
    "mocha-lcov-reporter": "^1.3.0",
    "nyc": "^18.0.0",
    "ts-node": "^8.10.2",
    "tslint": "^6.1.3",
    "typescript": "^3.9.10"
  },
  "husky": {
    "hooks": {
      "pre-commit": "lint-staged"
    }
  }
}
