package.json

Summary

Maintainability
Test Coverage
{
  "name": "@riotjs/parser",
  "version": "4.3.1",
  "description": "The parser for Riot tags",
  "type": "module",
  "main": "./index.cjs",
  "module": "./index.js",
  "exports": {
    ".": {
      "import": "./index.js",
      "require": "./index.cjs"
    }
  },
  "license": "MIT",
  "engines": {
    "node": ">=4.2",
    "npm": ">=3.0"
  },
  "scripts": {
    "test": "c8 mocha ./test/index",
    "test-debug": "mocha --inspect-brk ./test",
    "cov": "c8 report --reporter=lcov",
    "cov-html": "c8 report --reporter=html",
    "pretest": "npm run build",
    "lint": "eslint src test && npx prettier --check ./",
    "build": "rollup -c",
    "samples": "node ./test/samples.js",
    "prepublishOnly": "npm run build"
  },
  "files": [
    "*.js",
    "dist",
    "src"
  ],
  "keywords": [
    "html",
    "html5",
    "tag",
    "parser",
    "javascript"
  ],
  "author": {
    "name": "aMarCruz",
    "email": "amarcruz@yahoo.com",
    "url": "https://github.com/aMarCruz"
  },
  "repository": {
    "type": "git",
    "url": "https://github.com/riot/parser"
  },
  "homepage": "https://github.com/riot/parser",
  "bugs": "https://github.com/riot/parser/issues",
  "readme": "https://github.com/riot/parser/blob/master/README.md",
  "devDependencies": {
    "@riotjs/prettier-config": "^1.0.1",
    "c8": "^7.13.0",
    "chai": "^4.3.7",
    "eslint": "^8.39.0",
    "eslint-config-riot": "^4.0.0",
    "mocha": "^10.2.0",
    "prettier": "^2.8.8",
    "rollup": "^3.21.0",
    "rollup-plugin-node-resolve": "^5.2.0"
  },
  "dependencies": {
    "curri": "^2.0.3",
    "dom-nodes": "^1.1.3"
  }
}