{
  "name": "curli-core",
  "version": "0.0.1-beta.0",
  "description": "The core for a library to handle modules on the top of Express and build a complete custom framework",
  "main": "index",
  "scripts": {
    "build:clean": "npm run clean && npm run build",
    "build": "tsc",
    "clean": "rimraf ./dist",
    "test": "mocha -r ts-node/register src/__tests__/unit/*.test.ts",
    "test:coverage": "nyc -r lcov -e .ts -x \"src/__tests__/unit/*.test.ts\" npm run test",
    "lint": "eslint --ext \".js,.jsx,.ts,.tsx\" \"./src\"",
    "lint:fix": "eslint --fix --ext \".js,.jsx,.ts,.tsx\" \"./src\""
  },
  "repository": {
    "type": "git",
    "url": "git+https://github.com/CarlosCraviotto/curli-core.git"
  },
  "keywords": [
    "core",
    "simple framework",
    "small framework",
    "framework",
    "ddd",
    "clean",
    "curli-aplication",
    "curli",
    "nodejs",
    "node.js",
    "express",
    "typescript",
    "modules",
    "bundles"
  ],
  "engines": {
    "node": ">= 6.0.0"
  },
  "files": [
    "README.md",
    "LICENSE",
    ".eslintrc.js",
    ".eslintignore",
    "index.js",
    "index.ts",
    "dist",
    "src",
    "!*/__tests__"
  ],
  "author": "Carlos Juan Craviotto",
  "license": "MIT",
  "bugs": {
    "url": "https://github.com/CarlosCraviotto/curli-core/issues"
  },
  "homepage": "https://github.com/CarlosCraviotto/curli-core#readme",
  "dependencies": {
    "@types/node": "^13.11.0",
    "@types/express": "^4.17.4",
    "express": "^4.17.1",
    "curli-di": "^1.0.1",
    "curli-config": "^0.0.2"
  },
  "devDependencies": {
    "@types/mocha": "7.0.2",
    "@types/node": "^13.11.0",
    "@typescript-eslint/eslint-plugin": "^2.6.0",
    "@typescript-eslint/parser": "^2.6.0",
    "@types/chai": "^4.2.11",
    "chai": "^4.2.0",
    "eslint": "^6.6.0",
    "eslint-config-prettier": "^6.5.0",
    "eslint-plugin-prettier": "^3.1.1",
    "eslint-plugin-mocha": "^6.3.0",
    "nyc": "^15.0.0",
    "coveralls": "^3.0.11",
    "prettier": "^2.0.3",
    "rimraf": "^3.0.0",
    "mocha": "^7.1.1",
    "ts-node": "^8.8.1",
    "typescript": "^3.1.6"
  }
}
