package.json 1.8 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273
  1. {
  2. "name": "estree-util-is-identifier-name",
  3. "version": "3.0.0",
  4. "description": "Check if something can be an ecmascript (javascript) identifier name",
  5. "license": "MIT",
  6. "keywords": [
  7. "estree",
  8. "ast",
  9. "ecmascript",
  10. "javascript",
  11. "tree",
  12. "identifier",
  13. "character"
  14. ],
  15. "repository": "syntax-tree/estree-util-is-identifier-name",
  16. "bugs": "https://github.com/syntax-tree/estree-util-is-identifier-name/issues",
  17. "funding": {
  18. "type": "opencollective",
  19. "url": "https://opencollective.com/unified"
  20. },
  21. "author": "Titus Wormer <tituswormer@gmail.com> (https://wooorm.com)",
  22. "contributors": [
  23. "Titus Wormer <tituswormer@gmail.com> (https://wooorm.com)"
  24. ],
  25. "sideEffects": false,
  26. "type": "module",
  27. "exports": "./index.js",
  28. "files": [
  29. "lib/",
  30. "index.d.ts",
  31. "index.js"
  32. ],
  33. "devDependencies": {
  34. "@types/node": "^20.0.0",
  35. "c8": "^8.0.0",
  36. "prettier": "^3.0.0",
  37. "remark-cli": "^11.0.0",
  38. "remark-preset-wooorm": "^9.0.0",
  39. "type-coverage": "^2.0.0",
  40. "typescript": "^5.0.0",
  41. "xo": "^0.55.0"
  42. },
  43. "scripts": {
  44. "prepack": "npm run build && npm run format",
  45. "build": "tsc --build --clean && tsc --build && type-coverage",
  46. "format": "remark . -qfo && prettier . -w --log-level warn && xo --fix",
  47. "test-api": "node --conditions development test.js",
  48. "test-coverage": "c8 --100 --reporter lcov npm run test-api",
  49. "test": "npm run build && npm run format && npm run test-coverage"
  50. },
  51. "prettier": {
  52. "bracketSpacing": false,
  53. "semi": false,
  54. "singleQuote": true,
  55. "tabWidth": 2,
  56. "trailingComma": "none",
  57. "useTabs": false
  58. },
  59. "remarkConfig": {
  60. "plugins": [
  61. "remark-preset-wooorm"
  62. ]
  63. },
  64. "typeCoverage": {
  65. "atLeast": 100,
  66. "detail": true,
  67. "ignoreCatch": true,
  68. "strict": true
  69. },
  70. "xo": {
  71. "prettier": true
  72. }
  73. }