{
  "name": "apprun",
  "version": "2.24.0",
  "description": "JavaScript library that has Elm inspired architecture, event pub-sub and components",
  "main": "dist/apprun.js",
  "module": "dist/apprun.esm.js",
  "types": "apprun.d.ts",
  "bin": "apprun-cli.js",
  "scripts": {
    "lint": "tslint --project tsconfig.json",
    "build": "tsc -p src && rollup -c && webpack -p --mode production",
    "test": "jest --watch",
    "jest": "jest",
    "jest:debug": "node --inspect node_modules/.bin/jest --runInBand",
    "start": "webpack-dev-server --mode development",
    "build:docs": "marked -i README.md -o demo/home.html & marked -i WHATSNEW.md -o demo/new.html",
    "rollup": "tsc -p src && rollup -c"
  },
  "keywords": [
    "JavaScript",
    "TypeScript",
    "model-view-update",
    "elm architecture",
    "virtual DOM",
    "apprun",
    "app.run",
    "app.start"
  ],
  "author": "Yiyi Sun <yiyisun@gmail.com>",
  "license": "MIT",
  "repository": {
    "type": "git",
    "url": "git+https://github.com/yysun/apprun.git"
  },
  "bugs": {
    "url": "https://github.com/yysun/apprun/issues"
  },
  "homepage": "https://github.com/yysun/apprun#readme",
  "dependencies": {
    "commander": "^5.1.0"
  },
  "devDependencies": {
    "@rollup/plugin-commonjs": "^15.0.0",
    "@rollup/plugin-node-resolve": "^9.0.0",
    "@types/jest": "^26.0.13",
    "jest": "^26.4.2",
    "json-loader": "^0.5.7",
    "marked": "^1.1.1",
    "morphdom": "^2.6.1",
    "rollup": "^2.26.11",
    "rollup-plugin-sourcemaps": "^0.6.2",
    "rollup-plugin-terser": "^7.0.2",
    "ts-jest": "^26.3.0",
    "ts-loader": "^8.0.3",
    "typescript": "^3.9.7",
    "webpack": "^4.44.1",
    "webpack-cli": "^3.3.12",
    "webpack-dev-server": "^3.11.0"
  },
  "jest": {
    "transform": {
      "^.+\\.tsx?$": "ts-jest"
    },
    "testRegex": "(/__tests__/.*|(\\.|/)(test|spec))\\.(jsx?|tsx?)$",
    "moduleFileExtensions": [
      "ts",
      "tsx",
      "js",
      "jsx",
      "json",
      "node"
    ],
    "globals": {
      "ts-jest": {
        "diagnostics": true
      }
    }
  }
}
