package.json 2.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101
  1. {
  2. "name": "bootstrap-slider",
  3. "version": "10.6.2",
  4. "description": "Slider view component for Twitter Bootstrap.",
  5. "main": "dist/bootstrap-slider.js",
  6. "style": "dist/css/bootstrap-slider.css",
  7. "scripts": {
  8. "pretest": "grunt lint",
  9. "test": "grunt test",
  10. "release": "sh ./scripts/release.sh",
  11. "update-gh-pages": "sh ./scripts/update-gh-pages.sh"
  12. },
  13. "homepage": "http://github.com/seiyria/bootstrap-slider",
  14. "repository": {
  15. "type": "git",
  16. "url": "git://github.com/seiyria/bootstrap-slider.git"
  17. },
  18. "bugs": {
  19. "url": "http://github.com/seiyria/bootstrap-slider/issues"
  20. },
  21. "author": "bootstrap-slider ",
  22. "contributors": [
  23. {
  24. "name": "Kyle Kemp",
  25. "twitter": "@seiyria",
  26. "github": "seiyria"
  27. },
  28. {
  29. "name": "Rohit Kalkur",
  30. "twitter": "@Rovolutionary",
  31. "github": "rovolution"
  32. }
  33. ],
  34. "keywords": [
  35. "slider",
  36. "bootstrap",
  37. "twitter",
  38. "slide"
  39. ],
  40. "license": "MIT",
  41. "readmeFilename": "README.md",
  42. "gitHead": "67eb8fe3c26205efc94ae95b3ef37a469eef0b81",
  43. "dependencies": {},
  44. "engine": {},
  45. "devDependencies": {
  46. "babel-preset-es2015": "6.3.13",
  47. "bootstrap": "^3.3.6",
  48. "grunt": "^0.4.5",
  49. "grunt-babel": "6.0.0",
  50. "grunt-bump": "0.0.16",
  51. "grunt-cli": "^1.3.2",
  52. "grunt-contrib-clean": "0.6.0",
  53. "grunt-contrib-connect": "0.5.0",
  54. "grunt-contrib-jasmine": "1.0.3",
  55. "grunt-contrib-jshint": "0.11.3",
  56. "grunt-contrib-less": "0.7.0",
  57. "grunt-contrib-uglify": "0.2.4",
  58. "grunt-contrib-watch": "0.5.3",
  59. "grunt-header": "1.0.0",
  60. "grunt-lesslint": "^3.2.0",
  61. "grunt-open": "0.2.2",
  62. "grunt-sass-lint": "^0.2.2",
  63. "grunt-template": "0.2.0"
  64. },
  65. "gruntConfig": {
  66. "devPort": 9000,
  67. "js": {
  68. "highlightjs": "dependencies/js/highlight.min.js",
  69. "modernizr": "dependencies/js/modernizr.js",
  70. "jquery": "dependencies/js/jquery.min.js",
  71. "bindPolyfill": "test/phantom_bind_polyfill.js",
  72. "slider": "src/js/bootstrap-slider.js"
  73. },
  74. "less": {
  75. "slider": "src/less/bootstrap-slider.less",
  76. "rules": "src/less/rules.less",
  77. "variables": "src/less/variables.less"
  78. },
  79. "css": {
  80. "bootstrap": "node_modules/bootstrap/dist/css/bootstrap.min.css",
  81. "highlightjs": "dependencies/css/highlightjs-github-theme.css"
  82. },
  83. "tpl": {
  84. "SpecRunner": "tpl/SpecRunner.tpl",
  85. "index": "tpl/index.tpl"
  86. },
  87. "temp": {
  88. "js": "temp/bootstrap-slider.js",
  89. "jsMin": "temp/bootstrap-slider.min.js",
  90. "css": "temp/bootstrap-slider.css",
  91. "cssMin": "temp/bootstrap-slider.min.css"
  92. },
  93. "dist": {
  94. "js": "dist/bootstrap-slider.js",
  95. "jsMin": "dist/bootstrap-slider.min.js",
  96. "css": "dist/css/bootstrap-slider.css",
  97. "cssMin": "dist/css/bootstrap-slider.min.css"
  98. },
  99. "spec": "test/specs/**/*.js"
  100. }
  101. }