package.json 1.6 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768
  1. {
  2. "name": "reflect-metadata",
  3. "version": "0.2.2",
  4. "description": "Polyfill for Metadata Reflection API",
  5. "type": "commonjs",
  6. "main": "Reflect.js",
  7. "types": "index.d.ts",
  8. "exports": {
  9. ".": {
  10. "types": "./index.d.ts",
  11. "default": "./Reflect.js"
  12. },
  13. "./lite": {
  14. "types": "./index.d.ts",
  15. "default": "./ReflectLite.js"
  16. },
  17. "./no-conflict": {
  18. "types": "./no-conflict.d.ts",
  19. "default": "./ReflectNoConflict.js"
  20. },
  21. "./Reflect": "./Reflect.js",
  22. "./Reflect.js": "./Reflect.js"
  23. },
  24. "scripts": {
  25. "prepublishOnly": "gulp prepublish",
  26. "build": "gulp build",
  27. "test": "gulp test",
  28. "start": "gulp start"
  29. },
  30. "repository": {
  31. "type": "git",
  32. "url": "https://github.com/rbuckton/reflect-metadata.git"
  33. },
  34. "keywords": [
  35. "decorator",
  36. "metadata",
  37. "javascript",
  38. "reflect"
  39. ],
  40. "author": {
  41. "name": "Ron Buckton",
  42. "email": "ron.buckton@microsoft.com",
  43. "url": "http://github.com/rbuckton"
  44. },
  45. "license": "Apache-2.0",
  46. "bugs": {
  47. "url": "https://github.com/rbuckton/reflect-metadata/issues"
  48. },
  49. "homepage": "http://rbuckton.github.io/reflect-metadata",
  50. "dependencies": {},
  51. "devDependencies": {
  52. "@types/chai": "^3.4.34",
  53. "@types/mocha": "^2.2.34",
  54. "@types/node": "^10.17.60",
  55. "chai": "^3.5.0",
  56. "del": "^2.2.2",
  57. "ecmarkup": "^3.9.3",
  58. "gulp": "^3.9.1",
  59. "gulp-emu": "^1.1.0",
  60. "gulp-live-server": "0.0.30",
  61. "gulp-mocha": "^3.0.1",
  62. "gulp-rename": "^1.2.2",
  63. "gulp-sequence": "^0.4.6",
  64. "gulp-tsb": "^2.0.3",
  65. "mocha": "^3.2.0",
  66. "typescript": "^2.1.4"
  67. }
  68. }