package.json 2.3 KB

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