{
  "name": "@muffin-dev/kapp",
  "version": "0.7.2",
  "description": "Kapp is a lightweight framework for making any kind of easily configurable app made of modules and services.",
  "author": "Hubert GROSSIN",
  "main": "index.ts",
  "keywords": [
    "app",
    "framework"
  ],
  "scripts": {
    "build": "node ./build.js && tsc",
    "dev-start": "npm run build && npm run start",
    "start": "node ./index.js",
    "test": "echo \"Error: no test specified\" && exit 1",
    "tsc": "tsc",
    "lint": "eslint ./**/*.ts",
    "prepare": "npm run lint && npm run build"
  },
  "license": "ISC",
  "repository": {
    "type": "git",
    "url": "git+https://gitlab.com/muffin-dev/nodejs/kapp.git"
  },
  "bugs": {
    "url": "https://gitlab.com/muffin-dev/nodejs/kapp/issues"
  },
  "homepage": "https://gitlab.com/muffin-dev/nodejs/kapp#readme",
  "directories": {
    "doc": "doc",
    "lib": "lib",
    "bin": "bin"
  },
  "files": [
    "bin/**/*",
    "doc/**/*",
    "lib/**/*",
    "index.js",
    "index.d.ts"
  ],
  "bin": {
    "kapp": "bin/index.js"
  },
  "dependencies": {
    "@muffin-dev/js-helpers": "^1.4.2",
    "@muffin-dev/node-helpers": "^1.3.2"
  },
  "types": "./index.d.ts",
  "devDependencies": {
    "@muffin-dev/eslint-config": "^1.0.4",
    "@types/node": "^14.0.27",
    "@typescript-eslint/eslint-plugin": "^3.9.0",
    "@typescript-eslint/parser": "^3.9.0",
    "eslint": "^7.6.0",
    "eslint-config-standard": "^14.1.1",
    "eslint-plugin-import": "^2.22.0",
    "eslint-plugin-node": "^11.1.0",
    "eslint-plugin-promise": "^4.2.1",
    "eslint-plugin-standard": "^4.0.1",
    "eslint-plugin-unicorn": "^21.0.0",
    "typescript": "^3.9.7"
  }
}
