{
  "name": "punybind",
  "version": "1.2.1",
  "description": "A minimalist binding helper",
  "main": "dist/punybind.js",
  "files": [
    "dist/*.js"
  ],
  "scripts": {
    "pretest": "rimraf .stryker-tmp",
    "test": "jest --setupFilesAfterEnv ./tests/source.js",
    "test:minified": "jest --no-coverage --setupFilesAfterEnv ./tests/minified.js",
    "mutate": "stryker run",
    "lint": "standard --fix",
    "build": "uglifyjs punybind.js --compress --mangle -o dist/punybind.js && node version",
    "serve": "reserve",
    "ci": "npm run test && npm run build && npm run test:minified"
  },
  "repository": {
    "type": "git",
    "url": "git+https://github.com/ArnaudBuchholz/punybind.git"
  },
  "keywords": [
    "HTML",
    "binding"
  ],
  "author": "Arnaud Buchholz",
  "license": "MIT",
  "bugs": {
    "url": "https://github.com/ArnaudBuchholz/punybind/issues"
  },
  "homepage": "https://github.com/ArnaudBuchholz/punybind#readme",
  "devDependencies": {
    "@stryker-mutator/core": "^6.3.1",
    "@stryker-mutator/jest-runner": "^6.3.1",
    "jest": "^29.3.1",
    "jsdom": "^21.0.0",
    "punyexpr": "^1.0.3",
    "reserve": "^1.15.2",
    "rimraf": "^3.0.2",
    "standard": "^17.0.0",
    "uglify-js": "^3.17.4"
  },
  "standard": {
    "env": [
      "browser",
      "jest"
    ],
    "globals": [
      "JSDOM",
      "punybind",
      "dom2json",
      "safeWait"
    ],
    "ignore": [
      "dist/punybind.js"
    ]
  },
  "jest": {
    "collectCoverage": true,
    "collectCoverageFrom": [
      "punybind.js"
    ],
    "coverageThreshold": {
      "global": {
        "branches": 100,
        "functions": 100,
        "lines": 100,
        "statements": 100
      }
    }
  }
}
