package.json 1.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546
  1. {
  2. "name": "@mightyplow/jslib",
  3. "version": "0.18.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. "jsdoc-to-markdown": "^3.0.0",
  12. "nodeunit": "^0.10.2",
  13. "rimraf": "^2.6.1"
  14. },
  15. "scripts": {
  16. "createPackageJson": "node bin/createPackageJson.js",
  17. "doc": "jsdoc2md -f src/**/*.js > dist/README.md",
  18. "nodeunit": "nodeunit",
  19. "test": "babel-node node_modules/.bin/nodeunit src/**/__tests__/*.test.js",
  20. "build": "rimraf dist && babel src -d dist --ignore __tests__",
  21. "postbuild": "npm run doc",
  22. "prepublish": "npm run test && npm run build && npm run createPackageJson",
  23. "publish": "cd dist && npm publish"
  24. },
  25. "keywords": [
  26. "js",
  27. "javascript",
  28. "helpers",
  29. "library"
  30. ],
  31. "author": {
  32. "name": "mightyplow",
  33. "email": "mightyplow@gmail.com",
  34. "url": "http://mightyplow.net"
  35. },
  36. "license": "ISC",
  37. "babel": {
  38. "presets": [
  39. "env",
  40. "stage-2"
  41. ]
  42. },
  43. "dependencies": {
  44. "core-js": "^2.5.1"
  45. }
  46. }