package.json 2.5 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677
  1. {
  2. "name": "angular-bootstrap-calendar",
  3. "version": "0.18.0",
  4. "license": "MIT",
  5. "repository": "git@github.com:mattlewis92/angular-bootstrap-calendar.git",
  6. "peerDependencies": {
  7. "angular": ">=1.3.0",
  8. "bootstrap": "^3.3.6",
  9. "moment": "^2.10.6"
  10. },
  11. "devDependencies": {
  12. "angular": ">=1.3.0",
  13. "angular-mocks": ">=1.3.0",
  14. "bootstrap": "^3.3.6",
  15. "concurrently": "~1.0.0",
  16. "conventional-changelog": "~0.5.1",
  17. "css-loader": "~0.23.0",
  18. "eslint": "~1.10.1",
  19. "eslint-config-mwl": "~0.3.0",
  20. "eslint-loader": "~1.1.0",
  21. "eslint-plugin-angular": "~0.15.0",
  22. "extract-text-webpack-plugin": "~0.9.1",
  23. "html-loader": "~0.4.0",
  24. "htmlhint-loader": "~0.1.0",
  25. "istanbul-instrumenter-loader": "~0.1.3",
  26. "karma": "~0.13.3",
  27. "karma-chai-plugins": "~0.6.0",
  28. "karma-coverage": "~0.5.0",
  29. "karma-mocha": "~0.2.0",
  30. "karma-phantomjs-launcher": "~0.2.0",
  31. "karma-sourcemap-loader": "~0.3.5",
  32. "karma-webpack": "~1.7.0",
  33. "less": "~2.5.1",
  34. "less-loader": "~2.2.0",
  35. "mocha": "~2.3.0",
  36. "moment": "^2.10.6",
  37. "ng-annotate-loader": "0.0.10",
  38. "node-libs-browser": "~0.5.2",
  39. "null-loader": "~0.1.1",
  40. "phantomjs": "~1.9.17",
  41. "pre-git": "~3.1.1",
  42. "style-loader": "~0.13.0",
  43. "webpack": "~1.12.0",
  44. "webpack-dev-server": "~1.14.0",
  45. "webpack-notifier": "~1.2.1"
  46. },
  47. "engines": {
  48. "node": ">=4.0.0"
  49. },
  50. "browser": "dist/js/angular-bootstrap-calendar-tpls.js",
  51. "style": "dist/css/angular-bootstrap-calendar.css",
  52. "optionalDependencies": {
  53. "angular-touch": ">=1.3.0",
  54. "angular-ui-bootstrap": "~0.14.3",
  55. "interact.js": "~1.2.4"
  56. },
  57. "scripts": {
  58. "test": "karma start",
  59. "test:watch": "karma start --watch",
  60. "build:unmin": "webpack --config webpack.config.build.js",
  61. "build:min": "webpack -p --config webpack.config.build.js",
  62. "build:unmin:exclude-templates": "webpack --config webpack.config.build.js --exclude-templates",
  63. "build:min:exclude-templates": "webpack -p --config webpack.config.build.js --exclude-templates",
  64. "build": "npm run build:unmin && npm run build:min && npm run build:unmin:exclude-templates && npm run build:min:exclude-templates",
  65. "start": "concurrent \"webpack-dev-server\" \"npm run test:watch\" \"open http://localhost:8000\"",
  66. "changelog": "conventional-changelog -p angular -i CHANGELOG.md -w",
  67. "commit": "commit-wizard",
  68. "release": "npm run build && npm run changelog"
  69. },
  70. "config": {
  71. "pre-git": {
  72. "commit-msg": "conventional",
  73. "post-commit": "git status"
  74. }
  75. }
  76. }