{
  "name": "@ericcornelissen/arbitrary-javascript",
  "version": "0.3.0",
  "description": "Generate arbitrary JavaScript source code with fast-check",
  "license": "Apache-2.0",
  "type": "module",
  "main": "lib.js",
  "engines": {
    "node": "^26"
  },
  "repository": {
    "type": "git",
    "url": "git+https://gitlab.com/ericcornelissen/arbitrary-javascript.git"
  },
  "bugs": {
    "url": "https://gitlab.com/ericcornelissen/arbitrary-javascript/-/work_items"
  },
  "author": {
    "name": "Eric Cornelissen",
    "email": "ericornelissen@gmail.com",
    "url": "https://ericcornelissen.dev/"
  },
  "files": [
    "src/",
    "LICENSE",
    "README.md",
    "SECURITY.md",
    "lib.js",
    "main.js",
    "package.json"
  ],
  "keywords": [
    "arbitrary",
    "fast-check"
  ],
  "devDependencies": {
    "fast-check": "4.8.0",
    "prettier": "3.8.4"
  },
  "scripts": {
    "_prettier": "prettier '**/*.{js,md,yml}'",
    "check": "npm run check:format",
    "check:format": "npm run _prettier -- --check",
    "clean": "git clean -fx .tmp/ node_modules/",
    "format": "npm run _prettier -- --write",
    "test": "node --test 'main.test.js'",
    "verify": "npm run check && npm run test"
  }
}
