package.json 1.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960
  1. {
  2. "name": "ts-interface-checker",
  3. "version": "0.1.13",
  4. "description": "Runtime library to validate data against TypeScript interfaces",
  5. "main": "dist/index",
  6. "typings": "dist/index",
  7. "scripts": {
  8. "build": "tsc",
  9. "watch": "tsc -w",
  10. "test": "tsc && nyc mocha -R list test/",
  11. "bench": "tsc && node test/bench/bench.js",
  12. "preversion": "npm test",
  13. "version": "npm run build"
  14. },
  15. "keywords": [
  16. "typescript",
  17. "ts",
  18. "interface",
  19. "type",
  20. "validate",
  21. "validator",
  22. "check"
  23. ],
  24. "files": [
  25. "dist"
  26. ],
  27. "author": "Dmitry S, Grist Labs",
  28. "license": "Apache-2.0",
  29. "repository": {
  30. "type": "git",
  31. "url": "https://github.com/gristlabs/ts-interface-checker"
  32. },
  33. "bugs": {
  34. "url": "https://github.com/gristlabs/ts-interface-checker/issues"
  35. },
  36. "nyc": {
  37. "extension": [
  38. ".ts"
  39. ],
  40. "exclude": [
  41. "**/*.d.ts"
  42. ]
  43. },
  44. "dependencies": {},
  45. "devDependencies": {
  46. "@types/benchmark": "^1.0.31",
  47. "@types/chai": "~4.0.8",
  48. "@types/mocha": "^8.0.1",
  49. "@types/node": "^8.0.57",
  50. "benchmark": "^2.1.4",
  51. "chai": "^4.1.2",
  52. "coveralls": "^3.0.0",
  53. "mocha": "^7.1.2",
  54. "nyc": "^15.0.1",
  55. "protobufjs": "^6.8.3",
  56. "source-map-support": "^0.5.0",
  57. "ts-node": "^8.10.2",
  58. "typescript": "^3.9.7"
  59. }
  60. }