package.json 719 B

12345678910111213141516171819202122232425262728
  1. {
  2. "name": "test-redux-goodies",
  3. "version": "0.0.3",
  4. "description": "Helpers to test Redux code.",
  5. "main": "lib/node.js",
  6. "scripts": {
  7. "build": "babel src --presets es2015 --out-dir lib",
  8. "test": "echo \"Error: no test specified\" && exit 1"
  9. },
  10. "repository": {
  11. "type": "git",
  12. "url": "git+https://lolg.it/herby/test-redux-goodies.git"
  13. },
  14. "keywords": [
  15. "redux",
  16. "test"
  17. ],
  18. "author": "Herbert Vojčík <herby@mailbox.sk>",
  19. "license": "MIT",
  20. "bugs": {
  21. "url": "https://lolg.it/herby/test-redux-goodies/issues"
  22. },
  23. "homepage": "https://lolg.it/herby/test-redux-goodies#readme",
  24. "devDependencies": {
  25. "babel-cli": "^6.9.0",
  26. "babel-preset-es2015": "^6.9.0"
  27. }
  28. }