package.json 744 B

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