package.json 755 B

123456789101112131415161718192021222324252627282930313233343536373839
  1. {
  2. "name": "@mightyplow/jslib",
  3. "version": "0.8.0",
  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 lib -d dist",
  16. "prebublish": "npm run test && npm run build"
  17. },
  18. "files": [
  19. "dist",
  20. "lib"
  21. ],
  22. "keywords": [
  23. "js",
  24. "javascript",
  25. "helpers",
  26. "library"
  27. ],
  28. "author": {
  29. "name": "mightyplow",
  30. "email": "mightyplow@gmail.com",
  31. "url": "http://mightyplow.net"
  32. },
  33. "license": "ISC",
  34. "babel": {
  35. "presets": [
  36. "es2015"
  37. ]
  38. }
  39. }