package.json 957 B

12345678910111213141516171819202122232425262728293031323334353637383940414243
  1. {
  2. "name": "@mightyplow/jslib",
  3. "version": "0.11.0",
  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. "prepublish": "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. "env",
  36. "stage-2"
  37. ]
  38. },
  39. "dependencies": {
  40. "babel-preset-env": "^1.6.0",
  41. "babel-preset-stage-2": "^6.24.1"
  42. }
  43. }