{
  "name": "strip-directives",
  "version": "2.0.0",
  "description": "Strip directives (like eslint-disable-line) before you publish",
  "license": "Apache-2.0",
  "type": "module",
  "bin": {
    "strip-directives": "bin.js"
  },
  "main": "lib.js",
  "engines": {
    "node": "^24 || ^26"
  },
  "repository": {
    "type": "git",
    "url": "git+https://gitlab.com/ericcornelissen/strip-directives.git"
  },
  "bugs": {
    "url": "https://gitlab.com/ericcornelissen/strip-directives/-/work_items"
  },
  "author": {
    "name": "Eric Cornelissen",
    "email": "ericornelissen@gmail.com",
    "url": "https://ericcornelissen.dev/"
  },
  "files": [
    "LICENSE",
    "README.md",
    "SECURITY.md",
    "bin.js",
    "lib.js",
    "lib.d.ts",
    "main.js",
    "package.json"
  ],
  "keywords": [
    "strip",
    "directive",
    "directives",
    "build",
    "transpile",
    "clean",
    "minify"
  ],
  "dependencies": {
    "strip-comments-js": "^1.0.7"
  },
  "devDependencies": {
    "@ericcornelissen/arbitrary-javascript": "0.2.3",
    "fast-check": "4.7.0",
    "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"
  }
}
