package.json 1.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849
  1. {
  2. "name": "assert-options",
  3. "version": "0.8.1",
  4. "description": "Generic options parameter handling.",
  5. "main": "dist/src/index.js",
  6. "types": "dist/src/index.d.ts",
  7. "scripts": {
  8. "all": "tsc && npm test && npm run lint",
  9. "lint": "tslint --fix ./src/**/*.ts ./test/**/*.ts",
  10. "test": "nyc mocha -r ts-node/register test/**/*.spec.ts"
  11. },
  12. "files": [
  13. "dist/src",
  14. "dist/index.js"
  15. ],
  16. "homepage": "https://github.com/vitaly-t/assert-options",
  17. "repository": {
  18. "type": "git",
  19. "url": "https://github.com/vitaly-t/assert-options.git"
  20. },
  21. "bugs": {
  22. "url": "https://github.com/vitaly-t/assert-options/issues",
  23. "email": "vitaly.tomilov@gmail.com"
  24. },
  25. "keywords": [
  26. "assert",
  27. "options"
  28. ],
  29. "author": {
  30. "name": "Vitaly Tomilov",
  31. "email": "vitaly.tomilov@gmail.com"
  32. },
  33. "license": "MIT",
  34. "engines": {
  35. "node": ">=10.0.0"
  36. },
  37. "devDependencies": {
  38. "@types/chai": "4.3.4",
  39. "@types/mocha": "10.0.1",
  40. "@types/node": "18.15.3",
  41. "chai": "4.3.7",
  42. "mocha": "10.2.0",
  43. "mocha-lcov-reporter": "1.3.0",
  44. "nyc": "15.1.0",
  45. "ts-node": "10.9.1",
  46. "tslint": "6.1.3",
  47. "typescript": "5.0.2"
  48. }
  49. }