{
  "name": "strip-assertions",
  "version": "1.0.5",
  "description": "Strip debug assertions from JavaScript code",
  "license": "Apache-2.0",
  "type": "module",
  "exports": {
    ".": {
      "types": "./lib.d.ts",
      "import": "./lib.js"
    }
  },
  "bin": {
    "strip-assertions": "bin.js"
  },
  "engines": {
    "node": "^24 || ^26"
  },
  "repository": {
    "type": "git",
    "url": "git+https://gitlab.com/ericcornelissen/strip-assertions.git"
  },
  "bugs": {
    "url": "https://gitlab.com/ericcornelissen/strip-assertions/-/work_items"
  },
  "author": {
    "name": "Eric Cornelissen",
    "email": "ericornelissen@gmail.com",
    "url": "https://ericcornelissen.dev/"
  },
  "keywords": [
    "strip",
    "assert",
    "assertions",
    "debug",
    "build",
    "transpile",
    "clean",
    "minify"
  ],
  "files": [
    "LICENSE",
    "README.md",
    "SECURITY.md",
    "bin.js",
    "lib.js",
    "lib.d.ts",
    "main.js",
    "package.json"
  ],
  "devDependencies": {
    "prettier": "3.8.3"
  },
  "scripts": {
    "_prettier": "prettier '**/*.{js,md,ts,yml}'",
    "check": "npm run check:format",
    "check:format": "npm run _prettier -- --check",
    "format": "npm run _prettier -- --write",
    "test": "npm run test:unit && npm run test:bin",
    "test:bin": "node --test 'bin.test.js'",
    "test:unit": "node --test 'main.test.js'",
    "verify": "npm run check && npm run test"
  }
}
