{
  "name": "strip-assertions",
  "version": "1.0.6",
  "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"
  },
  "man": "./man.1",
  "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",
    "man.1",
    "package.json"
  ],
  "devDependencies": {
    "eslint": "10.8.1",
    "eslint-node-test": "0.4.0",
    "eslint-plugin-regexp": "3.2.0",
    "licensee": "12.0.2",
    "prettier": "3.8.3",
    "semver": "7.8.5"
  },
  "scripts": {
    "_prettier": "prettier '**/*.{js,md,ts,yml}'",
    "check": "npm run check:config && npm run check:format && npm run check:js && npm run check:licenses",
    "check:config": "node script/check-eslint-rules.js",
    "check:format": "npm run _prettier -- --check",
    "check:js": "eslint --config .eslint.js \"*.js\"",
    "check:licenses": "licensee --errors-only",
    "clean": "git clean -fx node_modules/ && git restore testdata/",
    "dogfeed": "./bin.js *.js && npm run test",
    "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",
    "version-bump": "node script/version-bump.js"
  }
}
