{
  "name": "widgetsjs",
  "version": "0.4.0",
  "description": "A tiny library for building websites with a widget based component system",
  "main": "dist/index.js",
  "scripts": {
    "test": "cd test && parcel build components/index.html --public-url . && mocha --require ts-node/register --timeout 999999 **/*.spec.ts && cd .. && npm run clean",
    "build": "tsc && browserify dist/index.js -o dist/web/index.js",
    "publish-nightly": "npm publish --tag nightly",
    "bump-nightly": "bump prerelease --preid nightly --push --commit --tag",
    "nightly": "npm run build && npm run bump-nightly && npm run clean && npm run publish-nightly",
    "publish-alpha": "npm publish --tag alpha",
    "bump-alpha": "bump prerelease --preid alpha --push --commit --tag",
    "alpha": "npm run build && npm run bump-alpha && npm run clean && npm run publish-alpha",
    "publish-beta": "npm publish --tag beta",
    "bump-beta": "bump prerelease --preid beta --push --commit --tag",
    "beta": "npm run build && npm run bump-beta && npm run clean && npm run publish-beta",
    "bump-patch": "bump patch --push --commit --tag",
    "patch": "npm run build && npm run bump-patch && npm run clean && npm publish",
    "bump-minor": "bump minor --push --commit --tag",
    "minor": "npm run build && npm run bump-minor && npm run clean && npm publish",
    "bump-major": "bump major --push --commit --tag",
    "major": "npm run build && npm run bump-major && npm run clean && npm publish",
    "clean": "ts-node scripts/clean.ts all",
    "clean-artifacts": "ts-node scripts/clean.ts artifacts"
  },
  "repository": {
    "type": "git",
    "url": "git+https://github.com/neutrino2211/widgetsjs.git"
  },
  "keywords": [
    "Widget",
    "Library",
    "Component"
  ],
  "author": "Tsowa Mainasara Al-amin <neutrino2211@gmail.com> (https://github.com/neutrino2211)",
  "license": "ISC",
  "bugs": {
    "url": "https://github.com/neutrino2211/widgetsjs/issues"
  },
  "homepage": "https://github.com/neutrino2211/widgetsjs#readme",
  "devDependencies": {
    "@types/fs-extra": "^7.0.0",
    "@types/mocha": "^5.2.6",
    "@types/node": "^12.20.7",
    "@types/selenium-webdriver": "^4.0.0",
    "chromedriver": "^2.46.0",
    "fs-extra": "^8.0.1",
    "mocha": "^8.3.2",
    "parcel": "^2.0.0-nightly.729",
    "selenium-webdriver": "^4.0.0-alpha.1",
    "ts-node": "^8.1.0",
    "typescript": "^3.4.5",
    "version-bump-prompt": "^5.0.1",
    "webdriver-manager": "^12.1.7"
  },
  "dependencies": {
    "diffhtml": "^1.0.0-beta.10",
    "events": "^3.0.0"
  }
}
