{
  "author": {
    "name": "Silas B. Domingos",
    "email": "hello@balmante.eti.br",
    "url": "https://balmante.eti.br"
  },
  "name": "@singleware/application",
  "description": "Singleware base application package.",
  "license": "MIT",
  "version": "1.2.10",
  "main": "release/source/index.js",
  "types": "release/types/index.d.ts",
  "keywords": [
    "application base",
    "application skeleton"
  ],
  "repository": {
    "type": "git",
    "url": "https://github.com/singleware/application"
  },
  "engines": {
    "node": ">=10"
  },
  "dependencies": {
    "@singleware/class": "^1.1.19",
    "@singleware/injection": "^1.0.19",
    "@singleware/observable": "^1.0.21",
    "@singleware/routing": "^1.0.28"
  },
  "devDependencies": {
    "@types/node": "^11.11.3",
    "prettier": "^1.16.4",
    "typescript": "^3.5.3"
  },
  "prettier": {
    "printWidth": 140,
    "tabWidth": 2,
    "singleQuote": true,
    "semi": true
  },
  "scripts": {
    "start": "node ./release/examples/basic/main.js",
    "build": "npm run clean && npm run make-source && npm run make-examples",
    "clean": "rm -rf ./release",
    "make-source": "npx tsc -p ./source && npm run update-source",
    "make-examples": "npx tsc -p ./examples",
    "update-source": "cp -Rf ./source/*.d.ts ./release/types"
  }
}