package.json 914 B

12345678910111213141516171819202122232425262728293031323334353637
  1. {
  2. "name": "tslib",
  3. "author": "Microsoft Corp.",
  4. "homepage": "https://www.typescriptlang.org/",
  5. "version": "2.3.0",
  6. "license": "0BSD",
  7. "description": "Runtime library for TypeScript helper functions",
  8. "keywords": [
  9. "TypeScript",
  10. "Microsoft",
  11. "compiler",
  12. "language",
  13. "javascript",
  14. "tslib",
  15. "runtime"
  16. ],
  17. "bugs": {
  18. "url": "https://github.com/Microsoft/TypeScript/issues"
  19. },
  20. "repository": {
  21. "type": "git",
  22. "url": "https://github.com/Microsoft/tslib.git"
  23. },
  24. "main": "tslib.js",
  25. "module": "tslib.es6.js",
  26. "jsnext:main": "tslib.es6.js",
  27. "typings": "tslib.d.ts",
  28. "sideEffects": false,
  29. "exports": {
  30. ".": {
  31. "module": "./tslib.es6.js",
  32. "import": "./modules/index.js",
  33. "default": "./tslib.js"
  34. },
  35. "./": "./"
  36. }
  37. }