package.json 1.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172
  1. {
  2. "name": "saslprep",
  3. "version": "1.0.3",
  4. "description": "SASLprep: Stringprep Profile for User Names and Passwords, rfc4013.",
  5. "main": "index.js",
  6. "scripts": {
  7. "test": "npm run lint && npm run unit-test",
  8. "lint": "npx eslint --quiet .",
  9. "unit-test": "npx jest",
  10. "gen-code-points": "node generate-code-points.js > code-points.mem"
  11. },
  12. "repository": {
  13. "type": "git",
  14. "url": "git+https://github.com/reklatsmasters/saslprep.git"
  15. },
  16. "keywords": [
  17. "sasl",
  18. "saslprep",
  19. "stringprep",
  20. "rfc4013",
  21. "4013"
  22. ],
  23. "author": "Dmitry Tsvettsikh <me@reklatsmasters.com>",
  24. "license": "MIT",
  25. "bugs": {
  26. "url": "https://github.com/reklatsmasters/saslprep/issues"
  27. },
  28. "engines": {
  29. "node": ">=6"
  30. },
  31. "homepage": "https://github.com/reklatsmasters/saslprep#readme",
  32. "devDependencies": {
  33. "@nodertc/eslint-config": "^0.2.1",
  34. "eslint": "^5.16.0",
  35. "jest": "^23.6.0",
  36. "prettier": "^1.14.3"
  37. },
  38. "dependencies": {
  39. "sparse-bitfield": "^3.0.3"
  40. },
  41. "eslintConfig": {
  42. "extends": "@nodertc",
  43. "rules": {
  44. "camelcase": "off",
  45. "no-continue": "off"
  46. },
  47. "overrides": [
  48. {
  49. "files": [
  50. "test/*.js"
  51. ],
  52. "env": {
  53. "jest": true
  54. },
  55. "rules": {
  56. "require-jsdoc": "off"
  57. }
  58. }
  59. ]
  60. },
  61. "jest": {
  62. "modulePaths": [
  63. "<rootDir>"
  64. ],
  65. "testMatch": [
  66. "**/test/*.js"
  67. ],
  68. "testPathIgnorePatterns": [
  69. "<rootDir>/node_modules/"
  70. ]
  71. }
  72. }