package.json 782 B

12345678910111213141516171819202122232425262728293031323334353637383940
  1. {
  2. "name": "@mightyplow/jslib",
  3. "version": "0.9.1",
  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. "modules": false
  37. }]
  38. ]
  39. }
  40. }