package.json 946 B

123456789101112131415161718192021222324252627282930313233343536
  1. {
  2. "name": "es6-set",
  3. "version": "0.1.5",
  4. "description": "ECMAScript6 Set polyfill",
  5. "author": "Mariusz Nowak <medyk@medikoo.com> (http://www.medikoo.com/)",
  6. "keywords": [
  7. "set",
  8. "collection",
  9. "es6",
  10. "harmony",
  11. "list",
  12. "hash"
  13. ],
  14. "repository": {
  15. "type": "git",
  16. "url": "git://github.com/medikoo/es6-set.git"
  17. },
  18. "dependencies": {
  19. "d": "1",
  20. "es5-ext": "~0.10.14",
  21. "es6-iterator": "~2.0.1",
  22. "es6-symbol": "3.1.1",
  23. "event-emitter": "~0.3.5"
  24. },
  25. "devDependencies": {
  26. "tad": "~0.2.7",
  27. "xlint": "~0.2.2",
  28. "xlint-jslint-medikoo": "~0.1.4"
  29. },
  30. "scripts": {
  31. "lint": "node node_modules/xlint/bin/xlint --linter=node_modules/xlint-jslint-medikoo/index.js --no-cache --no-stream",
  32. "lint-console": "node node_modules/xlint/bin/xlint --linter=node_modules/xlint-jslint-medikoo/index.js --watch",
  33. "test": "node ./node_modules/tad/bin/tad"
  34. },
  35. "license": "MIT"
  36. }