package.json 703 B

123456789101112131415161718192021222324252627282930313233343536
  1. {
  2. "name": "@mightyplow/jslib",
  3. "version": "0.8.0",
  4. "description": "js, helpers library",
  5. "main": "jslib.js",
  6. "devDependencies": {
  7. "babel-cli": "^6.26.0",
  8. "babel-preset-es2015": "^6.22.0",
  9. "nodeunit": "^0.10.2"
  10. },
  11. "scripts": {
  12. "nodeunit": "nodeunit",
  13. "test": "nodeunit tests",
  14. "build": "babel lib -d dist",
  15. "prebublish": "npm run test && npm run build"
  16. },
  17. "files": [
  18. "lib",
  19. "jslib.js"
  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": ["es2015"]
  35. }
  36. }