package.json 677 B

1234567891011121314151617181920212223242526272829303132333435
  1. {
  2. "name": "@mightyplow/jslib",
  3. "version": "0.8.0",
  4. "description": "js, helpers library",
  5. "devDependencies": {
  6. "babel-cli": "^6.26.0",
  7. "babel-preset-es2015": "^6.22.0",
  8. "nodeunit": "^0.10.2"
  9. },
  10. "scripts": {
  11. "nodeunit": "nodeunit",
  12. "test": "nodeunit tests",
  13. "build": "babel lib -d dist",
  14. "prebublish": "npm run test && npm run build"
  15. },
  16. "files": [
  17. "dist",
  18. "lib"
  19. ],
  20. "keywords": [
  21. "js",
  22. "javascript",
  23. "helpers",
  24. "library"
  25. ],
  26. "author": {
  27. "name": "mightyplow",
  28. "email": "mightyplow@gmail.com",
  29. "url": "http://mightyplow.net"
  30. },
  31. "license": "ISC",
  32. "babel": {
  33. "presets": ["es2015"]
  34. }
  35. }