package.json 2.2 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374
  1. {
  2. "name": "rsvp",
  3. "description": "A lightweight library that provides tools for organizing asynchronous code",
  4. "version": "4.8.5",
  5. "author": "Tilde, Inc. & Stefan Penner",
  6. "browser": {
  7. "vertx": false
  8. },
  9. "bugs": {
  10. "url": "https://github.com/tildeio/rsvp.js/issues"
  11. },
  12. "devDependencies": {
  13. "babel-plugin-transform-es2015-arrow-functions": "^6.22.0",
  14. "babel-plugin-transform-es2015-block-scoping": "6.26.0",
  15. "babel-plugin-transform-es2015-classes": "^6.24.1",
  16. "babel-plugin-transform-es2015-computed-properties": "^6.24.1",
  17. "babel-plugin-transform-es2015-constants": "^6.1.4",
  18. "babel-plugin-transform-es2015-destructuring": "^6.23.0",
  19. "babel-plugin-transform-es2015-parameters": "^6.24.1",
  20. "babel-plugin-transform-es2015-shorthand-properties": "^6.24.1",
  21. "babel-plugin-transform-es2015-spread": "^6.22.0",
  22. "babel-plugin-transform-es2015-template-literals": "^6.22.0",
  23. "babel-preset-env": "1.7.0",
  24. "babel6-plugin-strip-class-callcheck": "^6.0.0",
  25. "broccoli-babel-transpiler": "6.4.3",
  26. "broccoli-concat": "^3.7.1",
  27. "broccoli-funnel": "2.0.1",
  28. "broccoli-merge-trees": "^3.0.1",
  29. "broccoli-rollup": "2.1.1",
  30. "broccoli-stew": "^2.0.0",
  31. "broccoli-uglify-js": "^0.2.0",
  32. "broccoli-watchify": "1.0.1",
  33. "ember-cli": "3.4.2",
  34. "ember-cli-dependency-checker": "3.0.0",
  35. "ember-cli-inject-live-reload": "^2.0.1",
  36. "ember-cli-progress": "^1.0.6",
  37. "git-repo-version": "1.0.2",
  38. "mocha": "5.2.0",
  39. "promises-aplus-tests": "2.1.2"
  40. },
  41. "directories": {
  42. "lib": "lib"
  43. },
  44. "engines": {
  45. "node": "6.* || >= 7.*"
  46. },
  47. "files": [
  48. "dist",
  49. "lib",
  50. "!dist/test"
  51. ],
  52. "homepage": "https://github.com/tildeio/rsvp.js",
  53. "jsnext:main": "dist/rsvp.es.js",
  54. "keywords": [
  55. "futures",
  56. "promises"
  57. ],
  58. "license": "MIT",
  59. "main": "dist/rsvp.js",
  60. "module": "dist/rsvp.es.js",
  61. "namespace": "RSVP",
  62. "repository": {
  63. "type": "git",
  64. "url": "https://github.com/tildeio/rsvp.js.git",
  65. "dist": "git@github.com:components/rsvp.js.git"
  66. },
  67. "scripts": {
  68. "build": "ember build --environment production",
  69. "start": "ember s",
  70. "test": "ember test",
  71. "test:node": "ember test --launch Mocha",
  72. "test:server": "ember test --server"
  73. }
  74. }