package.json 2.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081
  1. {
  2. "_from": "tiny-emitter@^2.0.0",
  3. "_id": "tiny-emitter@2.1.0",
  4. "_inBundle": false,
  5. "_integrity": "sha512-NB6Dk1A9xgQPMoGqC5CVXn123gWyte215ONT5Pp5a0yt4nlEoO1ZWeCwpncaekPHXO60i47ihFnZPiRPjRMq4Q==",
  6. "_location": "/tiny-emitter",
  7. "_phantomChildren": {},
  8. "_requested": {
  9. "type": "range",
  10. "registry": true,
  11. "raw": "tiny-emitter@^2.0.0",
  12. "name": "tiny-emitter",
  13. "escapedName": "tiny-emitter",
  14. "rawSpec": "^2.0.0",
  15. "saveSpec": null,
  16. "fetchSpec": "^2.0.0"
  17. },
  18. "_requiredBy": [
  19. "/clipboard"
  20. ],
  21. "_resolved": "https://registry.npmjs.org/tiny-emitter/-/tiny-emitter-2.1.0.tgz",
  22. "_shasum": "1d1a56edfc51c43e863cbb5382a72330e3555423",
  23. "_spec": "tiny-emitter@^2.0.0",
  24. "_where": "/Users/wanglili/Documents/work/GitHub/yuyao/node_modules/clipboard",
  25. "author": {
  26. "name": "Scott Corgan"
  27. },
  28. "bugs": {
  29. "url": "https://github.com/scottcorgan/tiny-emitter/issues"
  30. },
  31. "bundleDependencies": false,
  32. "deprecated": false,
  33. "description": "A tiny (less than 1k) event emitter library",
  34. "devDependencies": {
  35. "@tap-format/spec": "0.2.0",
  36. "browserify": "11.2.0",
  37. "tape": "4.2.1",
  38. "testling": "1.7.1",
  39. "uglify-js": "2.5.0"
  40. },
  41. "homepage": "https://github.com/scottcorgan/tiny-emitter#readme",
  42. "keywords": [
  43. "event",
  44. "emitter",
  45. "pubsub",
  46. "tiny",
  47. "events",
  48. "bind"
  49. ],
  50. "license": "MIT",
  51. "main": "index.js",
  52. "name": "tiny-emitter",
  53. "repository": {
  54. "type": "git",
  55. "url": "git+https://github.com/scottcorgan/tiny-emitter.git"
  56. },
  57. "scripts": {
  58. "build": "npm test && npm run bundle && npm run minify",
  59. "bundle": "browserify index.js > dist/tinyemitter.js -s TinyEmitter && echo 'Bundled'",
  60. "minify": "uglifyjs dist/tinyemitter.js -o dist/tinyemitter.min.js -m && echo 'Minified'",
  61. "size": "uglifyjs index.js -o minified.js -m && ls -l && rm minified.js",
  62. "test": "testling | tap-format-spec",
  63. "test-node": "tape test/index.js | tap-format-spec"
  64. },
  65. "testling": {
  66. "files": [
  67. "test/index.js"
  68. ],
  69. "browsers": [
  70. "iexplore/10.0",
  71. "iexplore/9.0",
  72. "firefox/16..latest",
  73. "chrome/22..latest",
  74. "safari/5.1..latest",
  75. "ipad/6.0..latest",
  76. "iphone/6.0..latest",
  77. "android-browser/4.2..latest"
  78. ]
  79. },
  80. "version": "2.1.0"
  81. }