{
  "name": "better_deferred",
  "version": "2.0.2",
  "description": "Javascript library that truly defers the insertion of other Javascript libraries resulting in improved performance compared to using native defer or async.",
  "main": "src/index.js",
  "files": [
    "dist/bundle.js"
  ],
  "scripts": {
    "start": "./node_modules/webpack/bin/webpack.js ./src/index.js --output-filename=bundle.js --mode=development",
    "watch": "watch 'npm run start' ./src",
    "build": "npm run build:clean && npm run build:lib",
    "build:clean": "rm -rf dist",
    "build:lib": "./node_modules/webpack/bin/webpack.js ./src/index.js --output-filename=bundle.js --mode=production",
    "test": "npx playwright test"
  },
  "repository": {
    "type": "git",
    "url": "git+https://github.com/MrMurga/better_deferred.git"
  },
  "keywords": [
    "javascript",
    "defer",
    "async",
    "performance"
  ],
  "author": "Armando Murga",
  "license": "https://github.com/MrMurga/better_deferred/blob/main/LICENSE",
  "bugs": {
    "url": "https://github.com/MrMurga/better_deferred/issues"
  },
  "homepage": "https://github.com/MrMurga/better_deferred#readme",
  "devDependencies": {
    "@playwright/test": "^1.32.2",
    "webpack": "^5.25.1",
    "webpack-cli": "^4.5.0"
  },
  "dependencies": {
    "watch": "^1.0.2"
  }
}
