package.json 861 B

1234567891011121314151617181920212223242526272829303132333435363738
  1. {
  2. "name": "@mightyplow/jslib",
  3. "version": "0.9.8",
  4. "description": "js helpers library",
  5. "main": "dist/index.js",
  6. "private": true,
  7. "devDependencies": {
  8. "babel-cli": "^6.26.0",
  9. "babel-preset-es2015": "^6.22.0",
  10. "nodeunit": "^0.10.2",
  11. "rimraf": "^2.6.1"
  12. },
  13. "scripts": {
  14. "createPackageJson": "node bin/createPackageJson.js",
  15. "nodeunit": "nodeunit",
  16. "test": "nodeunit tests",
  17. "build": "rimraf dist && babel src -d dist",
  18. "prebublish": "npm run test && npm run build && npm run createPackageJson",
  19. "publish": "cd dist && npm publish"
  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. }