package.json 1.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445
  1. {
  2. "name": "domelementtype",
  3. "version": "2.2.0",
  4. "description": "all the types of nodes in htmlparser2's dom",
  5. "author": "Felix Boehm <me@feedic.com>",
  6. "license": "BSD-2-Clause",
  7. "funding": [
  8. {
  9. "type": "github",
  10. "url": "https://github.com/sponsors/fb55"
  11. }
  12. ],
  13. "sideEffects": false,
  14. "main": "lib/index.js",
  15. "types": "lib/index.d.ts",
  16. "files": [
  17. "lib/**/*"
  18. ],
  19. "repository": {
  20. "type": "git",
  21. "url": "git://github.com/fb55/domelementtype.git"
  22. },
  23. "keywords": [
  24. "dom",
  25. "htmlparser2"
  26. ],
  27. "scripts": {
  28. "test": "npm run lint && prettier --check **/*.{ts,json,md}",
  29. "lint": "eslint src",
  30. "format": "prettier --write **/*.{ts,json,md}",
  31. "build": "tsc",
  32. "prepare": "npm run build"
  33. },
  34. "prettier": {
  35. "tabWidth": 4
  36. },
  37. "devDependencies": {
  38. "@typescript-eslint/eslint-plugin": "^4.1.0",
  39. "@typescript-eslint/parser": "^4.1.0",
  40. "eslint": "^7.9.0",
  41. "eslint-config-prettier": "^6.0.0",
  42. "prettier": "^2.1.1",
  43. "typescript": "^4.0.2"
  44. }
  45. }