{
  "name": "@sidiousvic/phantom",
  "version": "2.1.5",
  "description": "A state—reactive DOM rendering engine for building UIs. 👻",
  "main": "lib/phantom.js",
  "unpkg": "dist/phantom.js",
  "module": "es/phantom.js",
  "types": "types/index.d.ts",
  "access": "public",
  "author": "sidiousvic",
  "license": "MIT",
  "bugs": {
    "url": "https://github.com/sidiousvic/phantom/issues"
  },
  "homepage": "https://github.com/sidiousvic/phantom#readme",
  "files": [
    "dist",
    "lib",
    "es",
    "src",
    "types"
  ],
  "repository": {
    "type": "git",
    "url": "git+https://github.com/sidiousvic/phantom.git"
  },
  "husky": {
    "hooks": {
      "pre-commit": "pretty-quick --staged --no-restage",
      "pre-push": "npm run test"
    }
  },
  "scripts": {
    "clean": "rimraf lib dist es types",
    "build": "rollup -c",
    "preversion": "npm test",
    "postversion": "git push origin --tags --no-verify",
    "test": "jest && tsc spec/types.test.ts --noEmit",
    "example/pizza": "webpack --config examples/pizza/webpack.config.js && webpack-dev-server --mode development --hot --watch-stdin --config examples/pizza/webpack.config.js",
    "example/todo": "webpack --config examples/todo/webpack.config.js && webpack-dev-server --mode development --hot --watch-stdin --config examples/todo/webpack.config.js",
    "example/calculator": "webpack --config examples/calculator/webpack.config.js && webpack-dev-server --mode development --hot --watch-stdin --config examples/calculator/webpack.config.js",
    "pretest": "npm run build"
  },
  "keywords": [
    "renderer",
    "frontend",
    "framework",
    "UI",
    "state management",
    "components",
    "DOM",
    "functional"
  ],
  "dependencies": {},
  "devDependencies": {
    "@babel/core": "^7.10.3",
    "@babel/plugin-transform-runtime": "^7.10.5",
    "@babel/preset-env": "^7.10.3",
    "@babel/preset-typescript": "^7.10.1",
    "@babel/runtime": "^7.10.5",
    "@rollup/plugin-node-resolve": "^8.4.0",
    "@rollup/plugin-replace": "^2.3.3",
    "@types/jest": "^26.0.5",
    "@types/node": "^14.0.13",
    "babel-jest": "^26.0.1",
    "babel-loader": "^8.1.0",
    "clean-webpack-plugin": "^3.0.0",
    "css-loader": "^3.6.0",
    "danger": "^10.2.1",
    "file-loader": "^6.0.0",
    "html-webpack-plugin": "^4.3.0",
    "husky": "^4.2.5",
    "jest": "^26.0.1",
    "nodemon": "^2.0.4",
    "prettier": "^2.0.5",
    "pretty-quick": "^2.0.1",
    "rimraf": "^3.0.2",
    "rollup": "^2.22.1",
    "rollup-plugin-babel": "^4.4.0",
    "rollup-plugin-terser": "^6.1.0",
    "rollup-plugin-typescript2": "^0.27.1",
    "serialize-javascript": "^4.0.0",
    "style-loader": "^1.2.1",
    "ts-loader": "^7.0.5",
    "typescript": "^3.9.5",
    "uglifyjs-webpack-plugin": "^2.2.0",
    "webpack": "^4.43.0",
    "webpack-cli": "^3.3.12",
    "webpack-dev-server": "^3.11.0"
  },
  "npmName": "phantom",
  "npmFileMap": [
    {
      "basePath": "/dist/",
      "files": [
        "*.js"
      ]
    }
  ]
}
