package.json 1.5 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859
  1. {
  2. "name": "core-js",
  3. "description": "Standard library",
  4. "version": "1.2.7",
  5. "repository": {
  6. "type": "git",
  7. "url": "https://github.com/zloirock/core-js.git"
  8. },
  9. "main": "index.js",
  10. "devDependencies": {
  11. "webpack": "1.12.x",
  12. "LiveScript": "1.3.x",
  13. "grunt": "0.4.x",
  14. "grunt-cli": "0.1.x",
  15. "grunt-livescript": "0.5.x",
  16. "grunt-contrib-uglify": "0.10.x",
  17. "grunt-contrib-watch": "0.6.x",
  18. "grunt-contrib-clean": "0.6.x",
  19. "grunt-contrib-copy": "0.8.x",
  20. "grunt-karma": "0.12.x",
  21. "karma": "0.13.x",
  22. "karma-qunit": "0.1.x",
  23. "karma-chrome-launcher": "0.2.x",
  24. "karma-ie-launcher": "0.2.x",
  25. "karma-firefox-launcher": "0.1.x",
  26. "karma-phantomjs-launcher": "0.2.x",
  27. "promises-aplus-tests": "2.1.x",
  28. "eslint": "1.9.x",
  29. "qunitjs": "1.23.x",
  30. "phantomjs": "1.9.x"
  31. },
  32. "scripts": {
  33. "grunt": "grunt",
  34. "lint": "eslint es5 es6 es7 js web core fn modules",
  35. "promises-tests": "promises-aplus-tests tests/promises-aplus/adapter",
  36. "test": "npm run lint && npm run grunt livescript client karma:continuous library karma:continuous-library && npm run promises-tests && lsc tests/commonjs"
  37. },
  38. "license": "MIT",
  39. "keywords": [
  40. "ES5",
  41. "ECMAScript 5",
  42. "ES6",
  43. "ECMAScript 6",
  44. "ES7",
  45. "ECMAScript 7",
  46. "Harmony",
  47. "Strawman",
  48. "Map",
  49. "Set",
  50. "WeakMap",
  51. "WeakSet",
  52. "Promise",
  53. "Symbol",
  54. "Array generics",
  55. "setImmediate",
  56. "Dict",
  57. "partial application"
  58. ]
  59. }