package.json 979 B

12345678910111213141516171819202122232425262728293031323334353637383940
  1. {
  2. "name": "@mightyplow/jslib",
  3. "version": "0.10.1",
  4. "description": "js helpers library",
  5. "main": "dist/index.js",
  6. "private": true,
  7. "devDependencies": {
  8. "babel-cli": "^6.26.0",
  9. "babel-preset-env": "^1.6.0",
  10. "babel-preset-stage-2": "^6.24.1"
  11. "nodeunit": "^0.10.2",
  12. "rimraf": "^2.6.1"
  13. },
  14. "scripts": {
  15. "createPackageJson": "node bin/createPackageJson.js",
  16. "nodeunit": "nodeunit",
  17. "test": "babel-node node_modules/.bin/nodeunit src/**/__tests__/*.test.js",
  18. "build": "rimraf dist && babel src -d dist --ignore __tests__",
  19. "prepublish": "npm run test && npm run build && npm run createPackageJson",
  20. "publish": "cd dist && npm publish"
  21. },
  22. "keywords": [
  23. "js",
  24. "javascript",
  25. "helpers",
  26. "library"
  27. ],
  28. "author": {
  29. "name": "mightyplow",
  30. "email": "mightyplow@gmail.com",
  31. "url": "http://mightyplow.net"
  32. },
  33. "license": "ISC",
  34. "babel": {
  35. "presets": [
  36. "env",
  37. "stage-2"
  38. ]
  39. }
  40. }