package.json 611 B

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